add ssh for server, add vscodium for pc, refactor hostnames

This commit is contained in:
Chris Kruining 2025-03-02 13:54:21 +01:00
parent b06525436b
commit f174b610d8
7 changed files with 55 additions and 8 deletions

View file

@ -2,6 +2,8 @@
{
imports = [ ./hardware-configuration.nix ];
networking.hostName = "chris-laptop";
modules = {
themes = {
enable = true;
@ -38,4 +40,3 @@
};
};
}

View file

@ -13,6 +13,8 @@
options = [ "rw" "uid=chris" ];
};
networking.hostName = "chris-pc";
modules = {
themes = {
enable = true;
@ -54,6 +56,7 @@
editors = {
default = "nano";
vscodium.enable = true;
zed.enable = true;
nvim.enable = true;
nano.enable = true;
@ -72,4 +75,3 @@
};
};
}

View file

@ -7,6 +7,8 @@
fsType = "ext4";
};
networking.hostName = "chris-server";
modules = {
themes = {
enable = true;
@ -15,6 +17,7 @@
};
networking.enable = true;
networking.ssh.enable = true;
services = {
enable = true;
@ -43,4 +46,3 @@
};
};
}

View file

@ -2,6 +2,8 @@
{
imports = [ ./hardware-configuration.nix ];
networking.hostName = "mam-laptop";
modules = {
themes = {
enable = true;
@ -37,4 +39,3 @@
};
};
}