Configuration is more flexible

Add new host must be easier
This commit is contained in:
Yorick Barbanneau 2023-09-02 15:51:02 +02:00
parent 431c99a58e
commit 51fdbb4a87
16 changed files with 91 additions and 79 deletions

View file

@ -0,0 +1,25 @@
{ config, pkgs, ... }:
{
# Services
services.pcscd.enable = true;
# Programs
programs.ssh.startAgent = true;
programs.zsh.enable = true;
# Needed for home-manager systemd service
programs.dconf.enable = true;
# Configs
fonts.fontconfig.enable = true;
users.users.ephase = {
shell = pkgs.zsh;
isNormalUser = true;
extraGroups = [ "video" "wheel" ];
home = "/home/ephase";
packages = with pkgs; [
remmina
gcc
];
};
}