mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-06 16:40:14 +00:00
some global options with flakes
This commit is contained in:
15
flake.nix
15
flake.nix
@ -30,9 +30,18 @@
|
||||
./nixos/configuration.nix
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.${user} = { imports = [ ./nixos/home.nix ]; };
|
||||
home-manager = {
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
users.${user} = {
|
||||
imports = [
|
||||
./nixos/home.nix
|
||||
./modules/applications/firefox.nix
|
||||
./modules/shell/fish.nix
|
||||
./modules/applications/alacritty.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
|
Reference in New Issue
Block a user