feat: nixosModules home-manager configuration
This commit is contained in:
17
home.nix
Normal file
17
home.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
self,
|
||||
...
|
||||
}: {
|
||||
# Home-manager configurations for when it is used as a NixOS module.
|
||||
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.backupFileExtension = "bkp";
|
||||
home-manager.users.guz = import ./home {inherit self;};
|
||||
|
||||
stylix.enable = true;
|
||||
stylix.image = ./static/guz-wallpaper-default.png;
|
||||
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
|
||||
}
|
||||
Reference in New Issue
Block a user