dotfiles/common/users/meyer/default.nix
sadan4 33393a9986
Declaratively manage KDE Plasma (#4)
* init and keybinds

* add display and monitor config

* panel is now configured, need to do system tray

* setup system tray

* fix mice acceleration

* move .gtkrc-2.0 to workaround https://github.com/nix-community/plasma-manager/issues/472

* fix color schemes
2025-03-20 00:37:27 -04:00

46 lines
1.1 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
pkgs,
inputs,
stable,
unstable,
...
}:
let
NAME = "meyer";
in
{
imports = [
(import ../../systemModules/networkManager.nix { inherit NAME; })
(import ../../systemModules/sops.nix { inherit NAME; })
(import ../../systemModules/vm.nix { inherit NAME; })
(import ../../systemModules/razer.nix { inherit NAME; })
(import ../../systemModules/docker.nix { inherit NAME; })
(import ../../systemModules/nixHelper.nix { inherit NAME; })
(import ../../programs/wireshark.nix { inherit NAME; })
(import ../../programs/kanata.nix { inherit NAME; })
];
users = {
users = {
"${NAME}" = {
isNormalUser = true;
extraGroups = [
"wheel" # Enable sudo for the user.
"audio"
"sound"
"video"
"input"
"tty"
"plugdev"
];
shell = pkgs.zsh;
};
};
};
home-manager = {
useUserPackages = true;
extraSpecialArgs = { inherit inputs stable unstable; };
users = {
"${NAME}" = import ./home.nix;
};
};
}