diff options
| author | quentin@aristote.fr <quentin@aristote.fr> | 2025-03-22 20:13:44 +0100 |
|---|---|---|
| committer | quentin@aristote.fr <quentin@aristote.fr> | 2025-03-22 21:09:38 +0100 |
| commit | 824f144cf0e0caf129cca8495a990ab99fffc045 (patch) | |
| tree | 8ccef1694e1b9ecfda1f1267103747ff1a013a2b /config | |
| parent | c0440f20bad439cde6d0a5689e1e98de2ce1d68c (diff) | |
split nix and system
Flake lock file updates:
• Updated input 'my-nixpkgs':
'github:qaristote/my-nixpkgs/65eb03f15116223871d06254dc453abc79bcffaa' (2025-03-18)
→ 'github:qaristote/my-nixpkgs/f2e0f4c86f3318cc6df018b1948dd5bade77f082' (2025-03-22)
• Updated input 'nixos-hardware':
'github:NixOS/nixos-hardware/4f4d97d7b7be387286cc9c988760a7ebaa5be1f1' (2025-03-17)
→ 'github:NixOS/nixos-hardware/380ed15bcd6440606c6856db44a99140d422b46f' (2025-03-22)
• Updated input 'nixpkgs':
'github:NixOS/nixpkgs/a1185f4064c18a5db37c5c84e5638c78b46e3341' (2025-03-16)
→ 'github:NixOS/nixpkgs/7105ae3957700a9646cc4b766f5815b23ed0c682' (2025-03-20)
Diffstat (limited to 'config')
| -rw-r--r-- | config/default.nix | 1 | ||||
| -rw-r--r-- | config/nix.nix | 3 | ||||
| -rw-r--r-- | config/system.nix | 6 |
3 files changed, 7 insertions, 3 deletions
diff --git a/config/default.nix b/config/default.nix index 3d511f9..9a38757 100644 --- a/config/default.nix +++ b/config/default.nix @@ -8,6 +8,7 @@ ./networking.nix ./nix.nix ./services + ./system.nix ./users.nix ]; diff --git a/config/nix.nix b/config/nix.nix index 912ee0d..26aa000 100644 --- a/config/nix.nix +++ b/config/nix.nix @@ -1,14 +1,11 @@ {...}: { personal.nix = { enable = true; - autoUpgrade.enable = true; gc.enable = true; - flake = "git+file:///etc/nixos/"; }; nix.settings.max-jobs = 4; nixpkgs.flake = { setNixPath = true; setFlakeRegistry = true; }; - system.autoUpgrade.dates = "12:30"; } diff --git a/config/system.nix b/config/system.nix new file mode 100644 index 0000000..5a568a2 --- /dev/null +++ b/config/system.nix @@ -0,0 +1,6 @@ +{...}: { + personal.system = { + flake = "git+file:///etc/nixos/"; + autoUpgrade.enable = true; + }; +} |
