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 =
|
||||
let home = config.home.homeDirectory;
|
||||
in lib.mkIf sops {
|
||||
"private_keys/msiserver" = {
|
||||
path = "${home}/.ssh/msiserver";
|
||||
};
|
||||
"private_keys/caveserver" = {
|
||||
path = "${home}/.ssh/caveserver";
|
||||
};
|
||||
"ssh_hosts/caveserver" = {
|
||||
path = "${home}/.ssh/conf.d/caveserver_config";
|
||||
};
|
||||
"private_keys/msiserver".path = "${home}/.ssh/msiserver";
|
||||
"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:
|
||||
|
||||
# Enable trash:/// support
|
||||
services.gvfs.enable = true;
|
||||
|
||||
# Enable the OpenSSH daemon.
|
||||
services.openssh.enable = true;
|
||||
|
||||
|
|
|
@ -8,23 +8,26 @@
|
|||
boot.kernelModules = [ "kvm-amd" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{
|
||||
device = "/dev/disk/by-uuid/8c377115-06bb-488e-a531-c668dac127f6";
|
||||
fsType = "ext4";
|
||||
};
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-uuid/8c377115-06bb-488e-a531-c668dac127f6";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{
|
||||
device = "/dev/disk/by-uuid/1A0A-CEB2";
|
||||
fsType = "vfat";
|
||||
};
|
||||
fileSystems."/boot" = {
|
||||
device = "/dev/disk/by-uuid/1A0A-CEB2";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
fileSystems."/data" = {
|
||||
device = "/dev/disk/by-uuid/00a7093a-49ee-41e4-baec-99d8a322a530";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/archive" = {
|
||||
device = "/dev/disk/by-uuid/d5a23b72-9982-49ab-a3a6-c297c0537cba";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
# Enable OpenGL
|
||||
hardware.graphics = {
|
||||
enable = true;
|
||||
|
|
|
@ -72,6 +72,7 @@ in
|
|||
# dotnet-sdk_8
|
||||
|
||||
pcmanfm
|
||||
nomacs
|
||||
];
|
||||
|
||||
home.file = { };
|
||||
|
|
Loading…
Reference in New Issue