diff --git a/hosts/hyprnix/hardware.nix b/hosts/hyprnix/hardware.nix index decd5e5..eda830c 100644 --- a/hosts/hyprnix/hardware.nix +++ b/hosts/hyprnix/hardware.nix @@ -18,23 +18,23 @@ fsType = "ext4"; }; + boot.initrd.luks.devices."luks-cdf913d6-7149-4a8f-9461-61c394b2f5af".device = "/dev/disk/by-uuid/cdf913d6-7149-4a8f-9461-61c394b2f5af"; + fileSystems."/home/zaney/Documents" = { device = "/dev/disk/by-uuid/35f6d96f-0837-4868-8ce5-8e1df5e3b2f3"; fsType = "ext4"; }; - fileSystems."/home/zaney/Videos" = - { device = "/dev/disk/by-uuid/cbe1beaf-6c7f-4251-ad5c-2897aecc367d"; - fsType = "ext4"; - }; - - boot.initrd.luks.devices."luks-cdf913d6-7149-4a8f-9461-61c394b2f5af".device = "/dev/disk/by-uuid/cdf913d6-7149-4a8f-9461-61c394b2f5af"; - fileSystems."/boot" = { device = "/dev/disk/by-uuid/C598-AF28"; fsType = "vfat"; }; + fileSystems."/home/zaney/Videos" = + { device = "/dev/disk/by-uuid/cbe1beaf-6c7f-4251-ad5c-2897aecc367d"; + fsType = "ext4"; + }; + swapDevices = [ { device = "/dev/disk/by-uuid/8160cef0-c5eb-4caa-9ef5-56a5b4eb51b8"; } ]; @@ -45,6 +45,7 @@ # with explicit per-interface declarations with `networking.interfaces..useDHCP`. networking.useDHCP = lib.mkDefault true; # networking.interfaces.enp7s0.useDHCP = lib.mkDefault true; + # networking.interfaces.wlp6s0.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; diff --git a/hosts/hyprnix/options.nix b/hosts/hyprnix/options.nix index 8b85e57..2066c72 100644 --- a/hosts/hyprnix/options.nix +++ b/hosts/hyprnix/options.nix @@ -73,12 +73,12 @@ in { distrobox = false; flatpak = false; kdenlive = true; - blender = false; + blender = true; enableZeroAD = true; # Enable Support For # Logitech Devices - logitech = true; + logitech = false; # Enable Terminals ( If You Disable All You Get Kitty ) wezterm = false; @@ -86,7 +86,7 @@ in { kitty = true; # Enable Python & PyCharm - python = false; + python = true; # Enable SyncThing syncthing = false; diff --git a/install-zaneyos.sh b/install-zaneyos.sh index 6d47dc5..6fc1468 100755 --- a/install-zaneyos.sh +++ b/install-zaneyos.sh @@ -55,6 +55,7 @@ git clone https://gitlab.com/zaney/zaneyos.git cd zaneyos mkdir hosts/$hostName cp hosts/default/*.nix hosts/$hostName +git add . sed -i "/^\s*host[[:space:]]*=[[:space:]]*\"/s/\"\(.*\)\"/\"$hostName\"/" ./flake.nix sed -i "/^\s*setHostname[[:space:]]*=[[:space:]]*\"/s/\"\(.*\)\"/\"$hostName\"/" ./hosts/$hostName/options.nix @@ -340,6 +341,7 @@ sudo nixos-generate-config --show-hardware-config > ./hosts/$hostName/hardware.n echo "-----" echo "Now Going To Build ZaneyOS, 🤞" +git commit -am "Add new hosts folder and all the new settings" NIX_CONFIG="experimental-features = nix-command flakes" sudo nixos-rebuild switch --flake .#$hostName