my system configurations ^-^
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: init lily

willow d13dd376 dad5b1f2

+22
+1
.gitignore
··· 1 1 .flake.nix.swp 2 2 todo.md 3 + result
+12
flake.nix
··· 90 90 inherit self inputs username; 91 91 }; 92 92 }; 93 + lily = nixpkgs.lib.nixosSystem { 94 + system = "x86_64-linux"; 95 + modules = [ 96 + (import ./hosts/lily) 97 + catppuccin.nixosModules.catppuccin 98 + home-manager.nixosModules.home-manager 99 + ]; 100 + specialArgs = { 101 + host = "lily"; 102 + inherit self inputs username; 103 + }; 104 + }; 93 105 }; 94 106 }; 95 107 }
+9
hosts/lily/default.nix
··· 1 + { pkgs, modulesPath, inputs, ... }: 2 + 3 + { 4 + imports = [ 5 + "${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix" 6 + ]; 7 + 8 + nixpkgs.hostPlatform = "x86_64-linux"; 9 + }