working on machines

This commit is contained in:
2026-03-12 16:03:06 +01:00
parent 615ed922e6
commit 16cdfc423e
+4 -2
View File
@@ -65,11 +65,12 @@
# Catppuccin theme module # Catppuccin theme module
inputs.catppuccin.nixosModules.catppuccin inputs.catppuccin.nixosModules.catppuccin
# Anchoring al the other nixes # Anchoring all the other nixes
./generated/top.nix ./generated/top.nix
# Enable Home Manager for the user # Enable Home Manager for the user
({ config, pkgs, ... }: (
{ config, pkgs, ... }:
{ {
home-manager.users.${user.username} = { home-manager.users.${user.username} = {
enable = true; enable = true;
@@ -83,6 +84,7 @@
serviceConfig.ExecStart = "${pkgs.home-manager}/bin/home-manager switch --flake ${self}#${user.username}@${machine}"; serviceConfig.ExecStart = "${pkgs.home-manager}/bin/home-manager switch --flake ${self}#${user.username}@${machine}";
}; };
} }
)
]; ];
specialArgs = { specialArgs = {
inherit user inputs; inherit user inputs;