diff --git a/flake.lock b/flake.lock index ec4d38e..32fb56f 100644 --- a/flake.lock +++ b/flake.lock @@ -147,11 +147,11 @@ ] }, "locked": { - "lastModified": 1786286733, - "narHash": "sha256-7dN93WKkEERgutPtTjK7SY3ZarO2LAU33A1+vKu+7cc=", + "lastModified": 1786603258, + "narHash": "sha256-j1lYPT7YxOQc/G7NcJKqdpQ5/A5yX2aZdhVKkJR6cM4=", "owner": "nix-community", "repo": "home-manager", - "rev": "367f7ef80856d18438953d54dda235d42a46ba31", + "rev": "0668fdbc15bd602e463cab37ff64346021193652", "type": "github" }, "original": { @@ -223,11 +223,11 @@ "nixpkgs": "nixpkgs" }, "locked": { - "lastModified": 1785232496, - "narHash": "sha256-65EQYIRRpTdpH8lUiB6Mvo5uBkG60aBIzAJuALfx+O0=", + "lastModified": 1786528975, + "narHash": "sha256-8KuasCs+mVQ7WbLONUf/QB7NZeQvovyXRyxAj4nOOzY=", "owner": "NixOS", "repo": "nixos-hardware", - "rev": "2e790b0a6be8ec2b76174ac0931b8ff11919ec98", + "rev": "3e7edd9afe17e45521300e041c65de3015f4a302", "type": "github" }, "original": { @@ -267,11 +267,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1786106723, - "narHash": "sha256-zDSUbpoeo/9ZmD2+wXnzxoo1+uhL8vxc0b8yuYMKYq0=", + "lastModified": 1786514691, + "narHash": "sha256-9dkt1i5JNbEfPb+EjLcSDNs8zqEHQ/1JlSaKgj0SBAg=", "owner": "nixos", "repo": "nixpkgs", - "rev": "f13ff45afd1bb73e640eaa08a7066dbed07e3238", + "rev": "867dcbc30bafe3c862ef88620f2e7a109d7d3be5", "type": "github" }, "original": { @@ -336,11 +336,11 @@ "tinted-zed": "tinted-zed" }, "locked": { - "lastModified": 1786216702, - "narHash": "sha256-fOOmw9tUYeqWVnK2w2NiuMTmGIbluj8xiBFTTFDCcEE=", + "lastModified": 1786531493, + "narHash": "sha256-F93yabBSW2TpxKYMcArQOnFuCqBgAdbfZsdl0w5Pojg=", "owner": "danth", "repo": "stylix", - "rev": "b67debfd2db1eb1f0fd8740b950f598bbaf74b8f", + "rev": "1e6ccadeda179d96728b4a9f20fc9d4dcf6b6059", "type": "github" }, "original": { @@ -472,11 +472,11 @@ ] }, "locked": { - "lastModified": 1786290296, - "narHash": "sha256-V5WOJhCGsuSRkz60K8TcALKMiMVCNubfJquMJqoCow0=", + "lastModified": 1786515268, + "narHash": "sha256-MPj7iVUEVlGg004Nsob4kMlkj6dz0BePTWZZqRc5b2o=", "owner": "0xc000022070", "repo": "zen-browser-flake", - "rev": "a1f244256e643fe7bd3f811e75b4267fd180cd7c", + "rev": "044be1aba87c30d42568e817c78a94c1d8eacb14", "type": "github" }, "original": { diff --git a/home/afoucaultc/packages/niri/conf/input.nix b/home/afoucaultc/packages/niri/conf/input.nix index 5779713..428f19c 100644 --- a/home/afoucaultc/packages/niri/conf/input.nix +++ b/home/afoucaultc/packages/niri/conf/input.nix @@ -17,7 +17,7 @@ }; touchpad = { - enable = false; + #enable = false; tap = true; dwt = true; dwtp = true; diff --git a/hosts/common/basesystem/memory.nix b/hosts/nixos-home/config/memory.nix similarity index 100% rename from hosts/common/basesystem/memory.nix rename to hosts/nixos-home/config/memory.nix diff --git a/hosts/common/basesystem/system.nix b/hosts/nixos-home/config/system.nix similarity index 100% rename from hosts/common/basesystem/system.nix rename to hosts/nixos-home/config/system.nix diff --git a/hosts/nixos-home/configuration.nix b/hosts/nixos-home/configuration.nix index 36cddcd..d4bb468 100644 --- a/hosts/nixos-home/configuration.nix +++ b/hosts/nixos-home/configuration.nix @@ -8,11 +8,11 @@ ./config/boot.nix ./config/drivers_video.nix ./config/power_management.nix + ./config/system.nix + ./coonfig/memory.nix # ensemble de packages et configurations système ../common/basesystem/bluetooth.nix ../common/basesystem/language.nix - ../common/basesystem/memory.nix - ../common/basesystem/system.nix ../common/basesystem/system_saves.nix ../common/basesystem/users.nix # style diff --git a/hosts/nixos-laptop/config/system.nix b/hosts/nixos-laptop/config/system.nix new file mode 100644 index 0000000..f57197f --- /dev/null +++ b/hosts/nixos-laptop/config/system.nix @@ -0,0 +1,19 @@ +{ ... }: +{ + networking = { + hostName = "nixos-laptop"; + networkmanager.enable = true; + firewall.enable = true; + }; + services = { + xserver.xkb = { + layout = "fr"; + variant = ""; + }; + printing.enable = true; + openssh.enable = false; + flatpak.enable = true; + fprintd.enable = true; + }; + virtualisation.docker.enable = true; +} diff --git a/hosts/nixos-laptop/configuration.nix b/hosts/nixos-laptop/configuration.nix index db5d9da..b520f21 100644 --- a/hosts/nixos-laptop/configuration.nix +++ b/hosts/nixos-laptop/configuration.nix @@ -8,12 +8,11 @@ ./config/boot.nix ./config/drivers_video.nix ./config/low-ram.nix + ./config/system.nix ./config/power_management.nix # ensemble de packages et configurations système ../common/basesystem/bluetooth.nix ../common/basesystem/language.nix - ../common/basesystem/memory.nix - ../common/basesystem/system.nix ../common/basesystem/system_saves.nix ../common/basesystem/users.nix # style