add zelden
This commit is contained in:
parent
c76fbd2cba
commit
76ff67f99b
6 changed files with 249 additions and 261 deletions
52
hosts/zelden/wim.nix
Normal file
52
hosts/zelden/wim.nix
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home = {
|
||||
homeDirectory = "/home/wim";
|
||||
packages = with pkgs; [
|
||||
# Add programs you want installed here if they don't have a `programs` entry
|
||||
firefox
|
||||
mtr
|
||||
];
|
||||
preferXdgDirectories = true;
|
||||
stateVersion = "23.11";
|
||||
username = "wim";
|
||||
};
|
||||
|
||||
xdg = {
|
||||
enable = true;
|
||||
portal = {
|
||||
enable = true;
|
||||
extraPortals = [ pkgs.kdePackages.xdg-desktop-portal-kde ];
|
||||
config.common.default = "*";
|
||||
};
|
||||
userDirs = {
|
||||
enable = true;
|
||||
createDirectories = true;
|
||||
};
|
||||
};
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
programs = {
|
||||
home-manager.enable = true;
|
||||
man.enable = true;
|
||||
ssh = {
|
||||
enable = true;
|
||||
compression = true;
|
||||
# you can add matchBlocks from the ssh config here to your liking
|
||||
matchBlocks = {
|
||||
# "github" = {
|
||||
# host = "github.com";
|
||||
# hostname = "github.com";
|
||||
# identityFile = "~/.ssh/id_rsa_yubikey.pub";
|
||||
# identitiesOnly = true;
|
||||
# port = 22;
|
||||
# user = "git";
|
||||
# };
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue