nixos-configs/devices/binto/default.nix

86 lines
1.7 KiB
Nix
Raw Normal View History

{
config,
self,
...
}: let
inherit (config.vars) mainUser hostName;
in {
# ------------------------------------------------
# Imports
# ------------------------------------------------
2023-10-15 23:12:19 -04:00
imports = [
./hardware-configuration.nix
2023-11-30 17:17:34 -05:00
../../modules/ags
2023-10-15 23:12:19 -04:00
../../modules/audio.nix
../../modules/kmscon.nix
../../modules/printer.nix
2024-04-24 17:44:08 -04:00
../../modules/ratbag-mice.nix
../../modules/sshd.nix
2023-10-20 13:03:36 -04:00
../../modules/tailscale.nix
2023-10-15 23:12:19 -04:00
./modules/gpu-replay.nix
./modules/nix-gaming.nix
2024-07-14 19:30:28 -04:00
self.nixosModules.adb
self.nixosModules.desktop
2023-10-15 23:12:19 -04:00
];
home-manager.users.${mainUser} = {
imports = [
../../home/firefox
];
# State Version: DO NOT CHANGE
home.stateVersion = "23.11";
};
# State Version: DO NOT CHANGE
system.stateVersion = "23.11";
# ------------------------------------------------
# User Settings
# ------------------------------------------------
vars = {
mainUser = "matt";
hostName = "binto";
promptMainColor = "purple";
};
users.users.${mainUser} = {
isNormalUser = true;
extraGroups = [
"wheel"
"input"
"uinput"
"adm"
"video"
"libvirtd"
];
};
2023-10-15 23:12:19 -04:00
networking = {
inherit hostName;
2023-10-15 23:12:19 -04:00
networkmanager.enable = true;
firewall.enable = false;
};
2023-11-23 01:15:32 -05:00
time.timeZone = "America/Montreal";
2023-10-17 18:45:08 -04:00
# ------------------------------------------------
# `Self` Modules configuration
# ------------------------------------------------
roles.desktop = {
user = mainUser;
mainMonitor = "desc:GIGA-BYTE TECHNOLOGY CO. LTD. G27QC 0x00000B1D";
displayManager.duplicateScreen = false;
fontSize = 12.5;
};
programs.adb = {
enable = true;
user = mainUser;
};
2023-10-15 23:12:19 -04:00
}