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
./sound.nix
];
serverModules = [ ./modules/minimal.nix ];
serverModules = [ ./minimal.nix ];
in
{
flake.nixosConfigurations = {
@@ -52,7 +52,7 @@ in
system = "x86_64-linux";
modules = [
./remilia
./modules/x86builder.nix
./x86builder.nix
inputs.mailserver.nixosModules.mailserver
]
++ commonModules
@@ -64,7 +64,7 @@ in
system = "x86_64-linux";
modules = [
./hina
./modules/x86builder.nix
./x86builder.nix
]
++ commonModules
++ serverModules;

View File

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

View File

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

View File

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