Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

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

Update to home-manager 24.05

+8 -6
-2
configuration.nix
··· 15 15 ./users.nix 16 16 ./packages.nix 17 17 ./services.nix 18 - # TOOD: check if we need this here still, it's imported in users.nix 19 - <home-manager/nixos> 20 18 ]; 21 19 22 20 # Set your time zone.
+8 -4
users.nix
··· 1 1 { pkgs, ... }: 2 + let 3 + home-manager = builtins.fetchTarball 4 + "https://github.com/nix-community/home-manager/archive/release-24.05.tar.gz"; 5 + in 2 6 { 3 7 4 - imports = 5 - [ 6 - <home-manager/nixos> 7 - ]; 8 + imports = [ 9 + # Import home-manager first, it's required for other modules 10 + (import "${home-manager}/nixos") 11 + ]; 8 12 9 13 # Declarative only optoins. 10 14 # I don't want to allow ad-hoc modifying users on the system.