39 lines
686 B
Nix
39 lines
686 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
home-manager = {
|
|
useUserPackages = true;
|
|
useGlobalPkgs = true;
|
|
};
|
|
home-manager.users.artemis = {
|
|
imports = [
|
|
./fish.nix
|
|
./gtk.nix
|
|
./git.nix
|
|
./mpv.nix
|
|
./terminals.nix
|
|
./ssh
|
|
./gpg.nix
|
|
./dirs.nix
|
|
];
|
|
|
|
home.stateVersion = config.system.stateVersion;
|
|
|
|
services.syncthing.enable = true;
|
|
programs.direnv = {
|
|
enable = true;
|
|
nix-direnv.enable = true;
|
|
};
|
|
|
|
xdg.enable = true;
|
|
xdg.configFile = {
|
|
"swaylock/config".text = ''
|
|
ignore-empty-password
|
|
indicator-caps-lock
|
|
show-failed-attempts
|
|
image=${./files/xp.jpg}
|
|
'';
|
|
};
|
|
};
|
|
}
|