2024-04-03 19:08:36 -04:00
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./hardware.nix
|
2024-05-11 09:46:55 -04:00
|
|
|
../../users/richie/global/syncthing_base.nix
|
|
|
|
../../users/richie/global/zerotier.nix
|
2024-05-21 18:25:44 -04:00
|
|
|
./steam.nix
|
2024-04-03 19:08:36 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
boot = {
|
|
|
|
useSystemdBoot = true;
|
|
|
|
default = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
networking = {
|
|
|
|
networkmanager.enable = true;
|
2024-04-10 17:16:42 -04:00
|
|
|
hostId = "9b68eb32";
|
2024-04-03 19:08:36 -04:00
|
|
|
};
|
|
|
|
|
2024-05-21 20:48:27 -04:00
|
|
|
hardware = {
|
|
|
|
pulseaudio.enable = false;
|
|
|
|
bluetooth = {
|
|
|
|
enable = true;
|
|
|
|
powerOnBoot = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-04-03 19:08:36 -04:00
|
|
|
security.rtkit.enable = true;
|
|
|
|
sound.enable = true;
|
|
|
|
|
|
|
|
services = {
|
2024-04-19 17:59:10 -04:00
|
|
|
autopull.enable = false;
|
2024-04-03 19:08:36 -04:00
|
|
|
|
2024-04-10 20:18:45 -04:00
|
|
|
displayManager.sddm.enable = true;
|
2024-04-03 19:08:36 -04:00
|
|
|
|
2024-04-10 20:18:45 -04:00
|
|
|
xserver = {
|
|
|
|
enable = true;
|
|
|
|
desktopManager.plasma5.enable = true;
|
|
|
|
xkb = {
|
|
|
|
layout = "us";
|
|
|
|
variant = "";
|
|
|
|
};
|
2024-04-03 19:08:36 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
printing.enable = true;
|
|
|
|
|
|
|
|
pipewire = {
|
|
|
|
enable = true;
|
|
|
|
alsa.enable = true;
|
|
|
|
alsa.support32Bit = true;
|
|
|
|
pulse.enable = true;
|
|
|
|
};
|
2024-04-10 17:16:42 -04:00
|
|
|
|
2024-04-13 08:51:00 -04:00
|
|
|
syncthing.settings.folders = {
|
|
|
|
"notes" = {
|
2024-04-20 12:54:33 -04:00
|
|
|
id = "l62ul-lpweo"; # cspell:disable-line
|
2024-04-13 08:51:00 -04:00
|
|
|
path = "/home/richie/notes";
|
|
|
|
devices = [
|
|
|
|
"phone"
|
|
|
|
"jeeves"
|
|
|
|
];
|
|
|
|
fsWatcherEnabled = true;
|
|
|
|
};
|
|
|
|
"books" = {
|
2024-04-20 12:54:33 -04:00
|
|
|
id = "6uppx-vadmy"; # cspell:disable-line
|
2024-04-13 08:51:00 -04:00
|
|
|
path = "/home/richie/books";
|
|
|
|
devices = [
|
|
|
|
"phone"
|
|
|
|
"jeeves"
|
|
|
|
];
|
|
|
|
fsWatcherEnabled = true;
|
|
|
|
};
|
|
|
|
"important" = {
|
2024-04-20 12:54:33 -04:00
|
|
|
id = "4ckma-gtshs"; # cspell:disable-line
|
2024-04-13 08:51:00 -04:00
|
|
|
path = "/home/richie/important";
|
|
|
|
devices = [
|
|
|
|
"phone"
|
|
|
|
"jeeves"
|
|
|
|
];
|
|
|
|
fsWatcherEnabled = true;
|
|
|
|
};
|
|
|
|
"music" = {
|
2024-04-20 12:54:33 -04:00
|
|
|
id = "vprc5-3azqc"; # cspell:disable-line
|
2024-04-13 08:51:00 -04:00
|
|
|
path = "/home/richie/music";
|
|
|
|
devices = [
|
|
|
|
"phone"
|
|
|
|
"jeeves"
|
|
|
|
];
|
|
|
|
"projects" = {
|
2024-04-20 12:54:33 -04:00
|
|
|
id = "vyma6-lqqrz"; # cspell:disable-line
|
2024-04-14 22:23:37 -04:00
|
|
|
path = "/home/richie/projects";
|
2024-04-13 08:51:00 -04:00
|
|
|
devices = [ "jeeves" ];
|
|
|
|
fsWatcherEnabled = true;
|
2024-04-12 07:38:29 -04:00
|
|
|
};
|
2024-04-13 08:51:00 -04:00
|
|
|
fsWatcherEnabled = true;
|
2024-04-12 07:38:29 -04:00
|
|
|
};
|
|
|
|
};
|
2024-04-03 19:08:36 -04:00
|
|
|
};
|
|
|
|
|
2024-04-19 17:59:10 -04:00
|
|
|
system.autoUpgrade.enable = false;
|
2024-04-03 19:08:36 -04:00
|
|
|
system.stateVersion = "23.11";
|
|
|
|
}
|