summaryrefslogtreecommitdiff
path: root/nixos/system.nix
diff options
context:
space:
mode:
authorquentin@aristote.fr <quentin@aristote.fr>2025-03-22 18:57:19 +0100
committerquentin@aristote.fr <quentin@aristote.fr>2025-03-22 20:12:45 +0100
commit5a074b7745b5855fd13ea53b21be7ea0d6497ffc (patch)
tree832b16ee3611d4ab5bec2b103789573573eb64d4 /nixos/system.nix
parent09382df4141b8ccd294a83e42f55306430b7c3bd (diff)
nixos: split nix and system
Diffstat (limited to 'nixos/system.nix')
-rw-r--r--nixos/system.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/nixos/system.nix b/nixos/system.nix
new file mode 100644
index 0000000..afaaf62
--- /dev/null
+++ b/nixos/system.nix
@@ -0,0 +1,20 @@
+{...}: {
+ personal.system = {
+ autoUpgrade = {
+ enable = true;
+ autoUpdateInputs = [
+ "latitude-7490/home-manager"
+ "latitude-7490/my-nixpkgs/nur"
+ "latitude-7490/nixos-hardware"
+ "latitude-7490/nixpkgs"
+ "latitude-7490/stylix"
+ ];
+ };
+ flake = "git+file:///etc/nixos";
+ };
+ systemd.services.flake-update.preStart = ''
+ pushd /home/qaristote/code/nix/machines/latitude-7490
+ git status
+ popd
+ '';
+}