wip: home-manager + stylix
This commit is contained in:
parent
f9acc609b2
commit
116aaaacff
4 changed files with 23 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
imports = [
|
||||
./ranomier.nix
|
||||
./ranomier
|
||||
];
|
||||
}
|
||||
|
|
6
modules/users/ranomier/default.nix
Normal file
6
modules/users/ranomier/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
imports = [
|
||||
./home-manager.nix
|
||||
./ranomier.nix
|
||||
];
|
||||
}
|
16
modules/users/ranomier/home-manager.nix
Normal file
16
modules/users/ranomier/home-manager.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{inArgs, pkgs, ...}: {
|
||||
imports = [
|
||||
inArgs.home-manager.nixosModules.home-manager
|
||||
];
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.users."ranomier" = {
|
||||
|
||||
stylix.iconTheme = {
|
||||
enable = true;
|
||||
package = pkgs.gruvbox-plus-icons;
|
||||
dark = "Gruvbox-Plus-Dark";
|
||||
};
|
||||
home.stateVersion = "25.05";
|
||||
};
|
||||
}
|
|
@ -6,6 +6,5 @@
|
|||
extraGroups = ["networkmanager" "wheel" "podman"];
|
||||
shell = pkgs.zsh;
|
||||
useDefaultShell = true;
|
||||
#packages = with pkgs; [];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue