2024-06-08 21:06:59 -04:00
|
|
|
{
|
|
|
|
imports = [
|
2024-06-13 20:24:01 -04:00
|
|
|
../../users/richie/global/desktop.nix
|
2024-06-19 19:17:07 -04:00
|
|
|
../../users/richie/global/ssh.nix
|
2024-06-08 21:06:59 -04:00
|
|
|
../../users/richie/global/syncthing_base.nix
|
|
|
|
../../users/richie/global/zerotier.nix
|
2024-06-09 12:23:53 -04:00
|
|
|
./hardware.nix
|
2024-06-09 12:23:23 -04:00
|
|
|
./nvidia.nix
|
2024-06-09 12:23:53 -04:00
|
|
|
./steam.nix
|
2024-06-08 21:06:59 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
boot = {
|
|
|
|
useSystemdBoot = true;
|
|
|
|
default = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
networking = {
|
|
|
|
networkmanager.enable = true;
|
|
|
|
hostId = "9ab3b18e";
|
|
|
|
};
|
|
|
|
|
|
|
|
hardware = {
|
|
|
|
pulseaudio.enable = false;
|
|
|
|
bluetooth = {
|
|
|
|
enable = true;
|
|
|
|
powerOnBoot = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
security.rtkit.enable = true;
|
|
|
|
sound.enable = true;
|
|
|
|
|
|
|
|
services = {
|
|
|
|
autopull.enable = false;
|
|
|
|
|
|
|
|
displayManager.sddm.enable = true;
|
|
|
|
|
2024-06-09 11:34:55 -04:00
|
|
|
openssh.ports = [ 262 ];
|
|
|
|
|
2024-06-08 21:06:59 -04:00
|
|
|
printing.enable = true;
|
|
|
|
|
|
|
|
pipewire = {
|
|
|
|
enable = true;
|
|
|
|
alsa.enable = true;
|
|
|
|
alsa.support32Bit = true;
|
|
|
|
pulse.enable = true;
|
|
|
|
};
|
2024-06-09 09:47:30 -04:00
|
|
|
|
2024-06-09 11:07:10 -04:00
|
|
|
rad-dev.k3s-net.enable = false;
|
|
|
|
|
2024-06-09 09:47:30 -04:00
|
|
|
syncthing.settings.folders = {
|
|
|
|
"notes" = {
|
|
|
|
id = "l62ul-lpweo"; # cspell:disable-line
|
|
|
|
path = "/home/richie/notes";
|
|
|
|
devices = [
|
|
|
|
"phone"
|
|
|
|
"jeeves"
|
|
|
|
"rhapsody-in-green"
|
|
|
|
];
|
|
|
|
fsWatcherEnabled = true;
|
|
|
|
};
|
|
|
|
"books" = {
|
|
|
|
id = "6uppx-vadmy"; # cspell:disable-line
|
|
|
|
path = "/home/richie/books";
|
|
|
|
devices = [
|
|
|
|
"phone"
|
|
|
|
"jeeves"
|
|
|
|
"rhapsody-in-green"
|
|
|
|
];
|
|
|
|
fsWatcherEnabled = true;
|
|
|
|
};
|
|
|
|
"important" = {
|
|
|
|
id = "4ckma-gtshs"; # cspell:disable-line
|
|
|
|
path = "/home/richie/important";
|
|
|
|
devices = [
|
|
|
|
"phone"
|
|
|
|
"jeeves"
|
|
|
|
"rhapsody-in-green"
|
|
|
|
];
|
|
|
|
fsWatcherEnabled = true;
|
|
|
|
};
|
|
|
|
"music" = {
|
|
|
|
id = "vprc5-3azqc"; # cspell:disable-line
|
|
|
|
path = "/home/richie/music";
|
|
|
|
devices = [
|
|
|
|
"phone"
|
|
|
|
"jeeves"
|
|
|
|
"rhapsody-in-green"
|
|
|
|
];
|
2024-06-09 10:56:25 -04:00
|
|
|
fsWatcherEnabled = true;
|
|
|
|
};
|
|
|
|
"projects" = {
|
|
|
|
id = "vyma6-lqqrz"; # cspell:disable-line
|
|
|
|
path = "/home/richie/projects";
|
|
|
|
devices = [
|
|
|
|
"jeeves"
|
|
|
|
"rhapsody-in-green"
|
|
|
|
];
|
2024-06-09 09:47:30 -04:00
|
|
|
fsWatcherEnabled = true;
|
|
|
|
};
|
|
|
|
};
|
2024-06-08 21:06:59 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
system.autoUpgrade.enable = false;
|
|
|
|
|
|
|
|
system.stateVersion = "23.11";
|
|
|
|
}
|