nixos/Vanguard.nix

103 lines
3 KiB
Nix
Raw Normal View History

{ pkgs, ... }:
{
imports = [
./home
./common.nix
./hardware/audio.nix
./hardware/bluetooth.nix
./hardware/syncthing.nix
./locales/en_GB.nix
./desktop/hyprland.nix
./desktop/steam.nix
];
networking.hostName = "Vanguard"; # Define your hostname.
#networking.wireless.networks."LAN LAN Ranch".pskRaw = "d4c31e976456783b61d573ee49c94f93914a81bf1048c2f2e1e166c36bdfcd4a";
networking.extraHosts = ''
192.168.1.230 Legion
'';
networking.nameservers = [ "192.168.1.230" ];
2023-05-04 11:06:12 +01:00
services.openssh.enable = true;
networking.firewall.allowedTCPPorts = [ 22 ];
2023-05-04 06:25:27 +01:00
services.xserver.displayManager.defaultSession = "steam";
# Define a user account. Don't forget to set a password with passwd.
users.users.xenia = {
isNormalUser = true;
description = "Evie Litherland-Smith";
extraGroups = [ "networkmanager" "wheel" ];
shell = pkgs.fish;
2023-05-04 11:06:12 +01:00
openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII1tJFdbiyJApuVZFvo9E9kjlBwvXZeySqVuS2qGdxha tux@monarch" ];
};
home-manager.users.xenia = { ... }: {
imports = [ ./home/collections/personal ];
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = "xenia";
home.homeDirectory = "/home/xenia";
home.stateVersion = "22.11";
home.packages = with pkgs; [ prismlauncher ];
programs.fish.shellAbbrs.update = "sudo nixos-rebuild switch";
};
services.syncthing = {
user = "xenia";
group = "users";
dataDir = "/mnt/secondary/syncthing";
devices = {
"ion" = { id = "7DD4NPH-6T2ET5A-4FCLFWW-CS6UR2W-IO5XQXC-DM5B2Q4-6X7DGU2-UKKVEAB"; };
"monarch" = { id = "CJSUZQY-67XBLEZ-VKVHQHI-BLEUZNF-G4237AV-AW44CGH-F3JDKXU-CWT3RQZ"; };
2023-05-07 08:47:19 +01:00
"northstar" = { id = "DMQZNMB-BM3SSE4-5XV2GHE-IDRNFTS-QNZSICS-6JWHUCV-O3NHMWY-2OBC2QD"; };
};
folders = {
"archive" = {
id = "hwnqy-xzcdx";
devices = [ "ion" "monarch northstar" ];
ignorePerms = true;
};
"Camera" = {
path = "/mnt/secondary/syncthing/camera";
label = "Camera";
id = "fp4_4j7w-photos";
devices = [ "ion" ];
type = "receiveonly";
ignorePerms = true;
};
"Pictures" = {
path = "/mnt/secondary/syncthing/pictures";
label = "Pictures";
id = "ziuj8-rm6dn";
devices = [ "ion" "monarch" "northstar" ];
ignorePerms = true;
};
"Movies" = {
path = "/mnt/secondary/syncthing/movies";
label = "Movies";
id = "3f75o-4x6sq";
devices = [ "ion" "monarch" "northstar" ];
ignorePerms = true;
};
"Documents" = {
path = "/mnt/secondary/syncthing/documents";
label = "Documents";
id = "qc6qa-bipsd";
devices = [ "monarch" "northstar" ];
ignorePerms = true;
};
};
};
2023-04-04 18:19:44 +01:00
# Extra hardware configuration
hardware.openrazer = {
enable = true;
users = [ "xenia" ];
};
system.autoUpgrade = {
2023-05-07 05:31:52 +01:00
enable = true;
allowReboot = false;
};
}