Merge branch 'nixos' of ssh://git.lyte.dev:2222/lytedev/dotfiles into nixos
This commit is contained in:
commit
b80cc81620
3
env/nix/modules/users/daniel.nix
vendored
3
env/nix/modules/users/daniel.nix
vendored
|
@ -33,8 +33,9 @@
|
|||
autoconf
|
||||
ncurses
|
||||
weechat
|
||||
python39Full
|
||||
jq
|
||||
xfce.thunar xfce.thunar-archive-plugin # xfce.thunar-volman
|
||||
xfce.thunar xfce.thunar-archive-plugin xfce.thunar-volman
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
14
env/nix/profiles/base.nix
vendored
14
env/nix/profiles/base.nix
vendored
|
@ -8,8 +8,8 @@
|
|||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
time.timeZone = "America/Chicago";
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
time.timeZone = "America/Chicago";
|
||||
|
||||
environment = {
|
||||
systemPackages = with pkgs; [
|
||||
|
@ -29,7 +29,7 @@
|
|||
};
|
||||
};
|
||||
|
||||
programs = {
|
||||
programs = {
|
||||
gnupg.agent = {
|
||||
enable = true;
|
||||
enableSSHSupport = true;
|
||||
|
@ -37,8 +37,12 @@
|
|||
};
|
||||
};
|
||||
|
||||
services = {
|
||||
openssh.enable = true;
|
||||
services = {
|
||||
openssh = {
|
||||
enable = true;
|
||||
passwordAuthentication = false;
|
||||
permitRootLogin = "no";
|
||||
};
|
||||
};
|
||||
|
||||
console = {
|
||||
|
|
Reference in a new issue