blue
This commit is contained in:
parent
0d61c14991
commit
3c44ab3bbe
6 changed files with 24 additions and 5 deletions
|
|
@ -8,6 +8,7 @@
|
|||
compsize
|
||||
duf
|
||||
eza
|
||||
bat
|
||||
file
|
||||
htop
|
||||
btop
|
||||
|
|
|
|||
|
|
@ -31,6 +31,7 @@ in {
|
|||
modules = [
|
||||
./common.nix
|
||||
./options.nix
|
||||
./packages.nix
|
||||
|
||||
conf.extraConfig
|
||||
conf.hardware-configuration
|
||||
|
|
|
|||
5
system/packages.nix
Normal file
5
system/packages.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
environment.packages = with pkgs; [
|
||||
gnome-bluetooth
|
||||
];
|
||||
}
|
||||
|
|
@ -1,6 +1,8 @@
|
|||
{...}: {
|
||||
networking.firewall.allowedTCPPorts = [22];
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
ports = [22];
|
||||
settings = {
|
||||
PermitRootLogin = "no";
|
||||
PasswordAuthentication = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue