we just gettin started
just a few more modules, like bitwarden, syncthing, screenshots
This commit is contained in:
parent
6b87cd99c8
commit
5fa40025d0
23 changed files with 227 additions and 61 deletions
|
|
@ -14,5 +14,6 @@
|
|||
./localization.nix
|
||||
./fira-code.nix
|
||||
./nixos-cli.nix
|
||||
./ssh.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@
|
|||
environment = {
|
||||
systemPackages = with pkgs; [
|
||||
coreutils
|
||||
util-linux
|
||||
];
|
||||
};
|
||||
programs.fish.enable = true;
|
||||
|
|
|
|||
13
system/ssh.nix
Normal file
13
system/ssh.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
services = {
|
||||
openssh = {
|
||||
enable = true;
|
||||
settings = {
|
||||
PermitRootLogin = "no";
|
||||
PasswordAuthentication = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue