109 lines
2.1 KiB
Nix
Raw Normal View History

{
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
];
boot = {
useSystemdBoot = true;
default = true;
};
networking = {
networkmanager.enable = true;
2024-04-10 17:16:42 -04:00
hostId = "9b68eb32";
};
2024-05-21 20:48:27 -04:00
hardware = {
pulseaudio.enable = false;
bluetooth = {
enable = true;
powerOnBoot = true;
};
};
security.rtkit.enable = true;
sound.enable = true;
services = {
2024-04-19 17:59:10 -04:00
autopull.enable = false;
displayManager.sddm.enable = true;
xserver = {
enable = true;
desktopManager.plasma5.enable = true;
xkb = {
layout = "us";
variant = "";
};
};
printing.enable = true;
pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
2024-04-10 17:16:42 -04:00
syncthing.settings.folders = {
"notes" = {
2024-04-20 12:54:33 -04:00
id = "l62ul-lpweo"; # cspell:disable-line
path = "/home/richie/notes";
devices = [
2024-06-09 09:47:30 -04:00
"bob"
"phone"
"jeeves"
];
fsWatcherEnabled = true;
};
"books" = {
2024-04-20 12:54:33 -04:00
id = "6uppx-vadmy"; # cspell:disable-line
path = "/home/richie/books";
devices = [
2024-06-09 09:47:30 -04:00
"bob"
"phone"
"jeeves"
];
fsWatcherEnabled = true;
};
"important" = {
2024-04-20 12:54:33 -04:00
id = "4ckma-gtshs"; # cspell:disable-line
path = "/home/richie/important";
devices = [
2024-06-09 09:47:30 -04:00
"bob"
"phone"
"jeeves"
];
fsWatcherEnabled = true;
};
"music" = {
2024-04-20 12:54:33 -04:00
id = "vprc5-3azqc"; # cspell:disable-line
path = "/home/richie/music";
devices = [
2024-06-09 09:47:30 -04:00
"bob"
"phone"
"jeeves"
];
2024-06-09 10:56:25 -04:00
fsWatcherEnabled = true;
};
"projects" = {
id = "vyma6-lqqrz"; # cspell:disable-line
path = "/home/richie/projects";
devices = [
"bob"
"jeeves"
];
fsWatcherEnabled = true;
2024-04-12 07:38:29 -04:00
};
};
};
2024-04-19 17:59:10 -04:00
system.autoUpgrade.enable = false;
system.stateVersion = "23.11";
}