me like nix
0

Configure Feed

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

move stuff

author
Sean Aye
date (Aug 20, 2025, 6:12 PM -0400) commit 2dfe4123 parent c12d6989 change-id ovtwlxmn
+2 -2
+2 -2
flake.nix
··· 34 34 # Replace "nixos" with your actual desired hostname if it's different 35 35 # This "nixos" must match the `networking.hostName` in your configuration.nix 36 36 nixos = nixpkgs.lib.nixosSystem { 37 - system = "x86_64-linux"; # Or your system's architecture 38 - specialArgs = { inherit inputs; }; # Pass inputs to your modules 37 + system = "x86_64-linux"; 39 38 modules = [ 40 39 # Your main configuration file 41 40 ./configuration.nix ··· 55 54 home-manager.users.sean = import ./home.nix; 56 55 } 57 56 ]; 57 + specialArgs = { inherit inputs; }; 58 58 }; 59 59 }; 60 60 };