Compare commits
5 Commits
3f6f73b74a
...
66c75433d3
Author | SHA1 | Date |
---|---|---|
Zynh Ludwig | 66c75433d3 | |
Zynh Ludwig | 4e8e363008 | |
Zynh Ludwig | 7106852a9a | |
Zynh Ludwig | 5c08a54f63 | |
Zynh Ludwig | 3a858e68dc |
|
@ -43,15 +43,9 @@ in
|
||||||
sops.secrets =
|
sops.secrets =
|
||||||
let home = config.home.homeDirectory;
|
let home = config.home.homeDirectory;
|
||||||
in lib.mkIf sops {
|
in lib.mkIf sops {
|
||||||
"private_keys/msiserver" = {
|
"private_keys/msiserver".path = "${home}/.ssh/msiserver";
|
||||||
path = "${home}/.ssh/msiserver";
|
"private_keys/caveserver".path = "${home}/.ssh/caveserver";
|
||||||
};
|
"ssh_hosts/caveserver".path = "${home}/.ssh/conf.d/caveserver_config";
|
||||||
"private_keys/caveserver" = {
|
|
||||||
path = "${home}/.ssh/caveserver";
|
|
||||||
};
|
|
||||||
"ssh_hosts/caveserver" = {
|
|
||||||
path = "${home}/.ssh/conf.d/caveserver_config";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -123,6 +123,9 @@
|
||||||
|
|
||||||
# List services that you want to enable:
|
# List services that you want to enable:
|
||||||
|
|
||||||
|
# Enable trash:/// support
|
||||||
|
services.gvfs.enable = true;
|
||||||
|
|
||||||
# Enable the OpenSSH daemon.
|
# Enable the OpenSSH daemon.
|
||||||
services.openssh.enable = true;
|
services.openssh.enable = true;
|
||||||
|
|
||||||
|
|
|
@ -8,23 +8,26 @@
|
||||||
boot.kernelModules = [ "kvm-amd" ];
|
boot.kernelModules = [ "kvm-amd" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" = {
|
||||||
{
|
device = "/dev/disk/by-uuid/8c377115-06bb-488e-a531-c668dac127f6";
|
||||||
device = "/dev/disk/by-uuid/8c377115-06bb-488e-a531-c668dac127f6";
|
fsType = "ext4";
|
||||||
fsType = "ext4";
|
};
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" = {
|
||||||
{
|
device = "/dev/disk/by-uuid/1A0A-CEB2";
|
||||||
device = "/dev/disk/by-uuid/1A0A-CEB2";
|
fsType = "vfat";
|
||||||
fsType = "vfat";
|
};
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems."/data" = {
|
fileSystems."/data" = {
|
||||||
device = "/dev/disk/by-uuid/00a7093a-49ee-41e4-baec-99d8a322a530";
|
device = "/dev/disk/by-uuid/00a7093a-49ee-41e4-baec-99d8a322a530";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fileSystems."/archive" = {
|
||||||
|
device = "/dev/disk/by-uuid/d5a23b72-9982-49ab-a3a6-c297c0537cba";
|
||||||
|
fsType = "ext4";
|
||||||
|
};
|
||||||
|
|
||||||
# Enable OpenGL
|
# Enable OpenGL
|
||||||
hardware.graphics = {
|
hardware.graphics = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -72,6 +72,7 @@ in
|
||||||
# dotnet-sdk_8
|
# dotnet-sdk_8
|
||||||
|
|
||||||
pcmanfm
|
pcmanfm
|
||||||
|
nomacs
|
||||||
];
|
];
|
||||||
|
|
||||||
home.file = { };
|
home.file = { };
|
||||||
|
|
Loading…
Reference in New Issue