Compare commits

..

No commits in common. "4faf40af77dfb7b74b8605f5ed2f4155d3ace5f2" and "08e019192df2d160b1afeab746b103ad1308fd7c" have entirely different histories.

4 changed files with 6 additions and 46 deletions

View file

@ -39,31 +39,19 @@
modules = [ modules = [
./hosts/Zephyrus ./hosts/Zephyrus
disko.nixosModules.disko disko.nixosModules.disko
home-manager.nixosModules.home-manager
]; ];
}; };
}; };
homeConfigurations = { homeConfigurations."culisg@im2ag" = home-manager.lib.homeManagerConfiguration {
"gaspard" = home-manager.lib.homeManagerConfiguration {
inherit pkgs; inherit pkgs;
extraSpecialArgs = {inherit hy3;}; extraSpecialArgs = {inherit hy3;};
modules = [ modules = [
./users/gaspard.nix ./nix/profiles/culisg.nix
]; ];
}; };
"culisg@im2ag" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
extraSpecialArgs = {inherit hy3;};
modules = [
./users/culisg.nix
];
};
};
devShells.${system}.default = pkgs.mkShell { devShells.${system}.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [ nativeBuildInputs = with pkgs; [
git git

View file

@ -10,17 +10,4 @@
# Set your time zone. # Set your time zone.
time.timeZone = "Europe/Paris"; time.timeZone = "Europe/Paris";
# User config
users.groups.gaspard = {
name = "gaspard";
};
users.users.gaspard = {
isNormalUser = true;
extraGroups = [
"wheel"
"video"
];
group = "gaspard";
};
} }

View file

@ -1,15 +0,0 @@
{...}: {
home.username = "gaspard";
home.homeDirectory = "/home/gaspard";
home.stateVersion = "24.05";
programs.home-manager.enable = true;
programs.direnv.enable = true;
imports = [
../../shell
../../term
../../editor
../../de
];
}