Recreated nix files

This commit is contained in:
2026-03-03 22:01:45 +01:00
parent 53fa96fc51
commit 6799b03086
5 changed files with 351 additions and 351 deletions
+296 -345
View File
File diff suppressed because it is too large Load Diff
-1
View File
@@ -5,7 +5,6 @@
./apps/theme.nix ./apps/theme.nix
./desktop/hypridle.nix ./desktop/hypridle.nix
./desktop/hyprland.nix ./desktop/hyprland.nix
#./desktop/hyprexpo.nix
./desktop/hyprlock.nix ./desktop/hyprlock.nix
./desktop/hyprshell.nix ./desktop/hyprshell.nix
#./desktop/animated_wallpaper.nix #./desktop/animated_wallpaper.nix
-3
View File
@@ -3,9 +3,6 @@
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true; enable = true;
settings = { settings = {
windowrule = [
"match:class nm-connection-editor, float 1, center 1, size 900 700"
];
}; };
}; };
xdg.portal = { xdg.portal = {
+2 -2
View File
@@ -13,6 +13,6 @@ in
{ {
xdg.enable = true; xdg.enable = true;
home.packages = [ walkerPkg elephantPkg ]; home.packages = [ walkerPkg elephantPkg ];
systemd.user.services.elephant = { /* ... your existing service ... */ }; systemd.user.services.elephant = { };
systemd.user.services.walker = { /* ... your existing service ... */ }; systemd.user.services.walker = { };
} }
+53
View File
@@ -0,0 +1,53 @@
README.org
emacs README.org --batch -f org-babel-tangle
emacs --batch -l org -l ox-html README.org -f org-html-export-to-html --kill
emacs README.org --batch -f org-babel-tangle && emacs --batch -l org -l ox-html README.org -f org-html-export-to-html --kill
emacs README.org --batch -f org-babel-tangle
git add .
git commit -m "experiment: local change"
sudo nixos-rebuild test --flake .#YOUR_HOSTNAME
emacs README.org --batch -f org-babel-tangle && emacs --batch -l org -l ox-html README.org -f org-html-export-to-html --kill
git add .
git commit -m "literate: structural update"
sudo nixos-rebuild test --flake .#YOUR_HOSTNAME
- a NIXOS system installed with a user with sudo rights.
- an internet connection
- the folder henrovnix_ok as you find it here
# Check if NetworkManager service is running
systemctl status NetworkManager
# If not running, start it temporarily
sudo systemctl start NetworkManager
# Enable Wi-Fi radio (in case it is disabled)
nmcli radio wifi on
# List available Wi-Fi networks
nmcli device wifi list
# Connect to a Wi-Fi network (replace SSID and PASSWORD)
nmcli device wifi connect "SSID_NAME" password "YOUR_PASSWORD"
# Verify that the connection is active
nmcli connection show --active
# Optional: show device status
nmcli device status
find ~/Repos/nixos/henrovnix_ok \
-type d -name ".*" -prune -o \
-type f -print0 \
| xargs -0 sed -i 's/=<defaultUser>=/YOUR_USER/g'
find ~/Repos/nixos/henrovnix_ok \
-type d -name ".*" -prune -o \
-type f -print0 \
| xargs -0 sed -i 's/machine1/YOUR_HOSTNAME/g'
mv ./machines/machine1 ./machines/YOUR_HOSTNAME
nixos-generate-config
sudo nixos-rebuild switch --flake .#YOUR_HOSTNAME