Compare commits

..

5 Commits

Author SHA1 Message Date
c1c4714fa2 flake-parts: rename lib' to conf
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2024-05-27 23:00:24 +05:30
29acfc513e hosts/xorg: get rid of rename warning
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2024-05-27 23:00:24 +05:30
15f03999d3 hosts/okina: init
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2024-05-27 23:00:24 +05:30
ded1e9c202 satori: get rid of rename warning
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2024-05-27 23:00:24 +05:30
856d49ee10 hosts: rearrange modules a bit
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2024-05-27 23:00:24 +05:30
4 changed files with 6 additions and 9 deletions

View File

@@ -13,7 +13,7 @@ let
./desktop-pkgs.nix ./desktop-pkgs.nix
./sound.nix ./sound.nix
]; ];
serverModules = [ ./modules/minimal.nix ]; serverModules = [ ./minimal.nix ];
in in
{ {
flake.nixosConfigurations = { flake.nixosConfigurations = {
@@ -52,7 +52,7 @@ in
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
./remilia ./remilia
./modules/x86builder.nix ./x86builder.nix
inputs.mailserver.nixosModules.mailserver inputs.mailserver.nixosModules.mailserver
] ]
++ commonModules ++ commonModules
@@ -64,7 +64,7 @@ in
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
./hina ./hina
./modules/x86builder.nix ./x86builder.nix
] ]
++ commonModules ++ commonModules
++ serverModules; ++ serverModules;

View File

@@ -8,7 +8,7 @@ in
openssh = { openssh = {
enable = true; enable = true;
permitRootLogin = "yes"; settings.PermitRootLogin = "yes";
ports = [ 22 ]; ports = [ 22 ];
}; };

View File

@@ -20,7 +20,6 @@
vim vim
tmux tmux
wireguard-tools wireguard-tools
rnix-lsp
nmap nmap
gcc gcc
]; ];
@@ -29,16 +28,14 @@
gnupg = { gnupg = {
agent = { agent = {
enable = true; enable = true;
pinentryFlavor = "curses";
}; };
}; };
}; };
nix = { nix = {
package = pkgs.nixUnstable;
extraOptions = '' extraOptions = ''
experimental-features = nix-command flakes experimental-features = nix-command flakes
''; '';
settings.trusted-users = [ "root" "spark" ]; settings.trusted-users = [ "root" ];
}; };
} }

View File

@@ -7,7 +7,7 @@ in
cron.enable = true; cron.enable = true;
openssh = { openssh = {
enable = true; enable = true;
permitRootLogin = "yes"; settings.PermitRootLogin = "yes";
ports = [ 22 22002 ]; ports = [ 22 22002 ];
}; };
nginx = { nginx = {