wip: home-manager + stylix
This commit is contained in:
parent
f9acc609b2
commit
116aaaacff
4 changed files with 23 additions and 2 deletions
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";
|
||||
};
|
||||
}
|
10
modules/users/ranomier/ranomier.nix
Normal file
10
modules/users/ranomier/ranomier.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{pkgs, ...}: {
|
||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||
users.users.ranomier = {
|
||||
isNormalUser = true;
|
||||
description = "Ranomier";
|
||||
extraGroups = ["networkmanager" "wheel" "podman"];
|
||||
shell = pkgs.zsh;
|
||||
useDefaultShell = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue