Compare commits

..

5 Commits

Author SHA1 Message Date
bbbd1a58ac flake-parts: rename lib' to conf
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2024-05-27 20:07:28 +05:30
a4ead48326 hosts/xorg: get rid of rename warning
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2024-05-27 20:01:02 +05:30
dbf781407c hosts/okina: init
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2024-05-27 19:57:56 +05:30
854d9ec093 satori: get rid of rename warning
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2024-05-27 19:56:42 +05:30
08fdf5f3af hosts: rearrange modules a bit
Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2024-05-27 19:50:20 +05:30
4 changed files with 9 additions and 6 deletions

View File

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

View File

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

View File

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

View File

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