bjarte: init
This commit is contained in:
parent
f364bd9baf
commit
2ed7ef788e
|
@ -279,6 +279,7 @@
|
||||||
brumlebasse = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au amd nspawn ];
|
brumlebasse = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au amd nspawn ];
|
||||||
nord = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au intel-novga hw.common-cpu-intel-sandy-bridge rocm hidpi ];
|
nord = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au intel-novga hw.common-cpu-intel-sandy-bridge rocm hidpi ];
|
||||||
sopp = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au nixld intel cuda p1005 ];
|
sopp = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au nixld intel cuda p1005 ];
|
||||||
|
bjarte = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ nixld intel hw.lenovo-thinkpad-x1-7th-gen ];
|
||||||
bolle = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au dns64 intel ];
|
bolle = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au dns64 intel ];
|
||||||
eple = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au dns64 intel rocm ];
|
eple = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au dns64 intel rocm ];
|
||||||
garp = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au dns64 intel-novga cuda ];
|
garp = mk "pbsds.net" "x86_64-linux" inputs-2311 "23.11" [ au dns64 intel-novga cuda ];
|
||||||
|
|
|
@ -0,0 +1,49 @@
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
{
|
||||||
|
# Bootloader
|
||||||
|
#TODO
|
||||||
|
|
||||||
|
#boot.kernel.sysctl."vm.swappiness" = lib.mkDefault 10; # 0-100, commonly 60
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
./hardware-configuration.nix
|
||||||
|
#../../profiles/sshd.nix
|
||||||
|
#../../profiles/no-suspend.nix
|
||||||
|
#../../profiles/oci/podman.nix
|
||||||
|
#../../profiles/oci/docker.nix
|
||||||
|
#../../profiles/oci/distrobox.nix
|
||||||
|
|
||||||
|
../../users/pbsds
|
||||||
|
|
||||||
|
#../../profiles/mounts/freon-nfs.nix
|
||||||
|
#../../profiles/mounts/reidun-nfs.nix
|
||||||
|
#../../profiles/mounts/meconium-nfs.nix
|
||||||
|
|
||||||
|
../../profiles/shell.nix
|
||||||
|
|
||||||
|
../../profiles/desktop/base.nix
|
||||||
|
../../profiles/desktop/gnome # configures gdm
|
||||||
|
#../../profiles/desktop/sound/alsa.nix
|
||||||
|
#../../profiles/desktop/sound/pulseaudio.nix
|
||||||
|
../../profiles/desktop/sound/pipewire.nix
|
||||||
|
|
||||||
|
../../profiles/desktop/steam.nix
|
||||||
|
#../../profiles/desktop/xboxdrv.nix # TODO: try out
|
||||||
|
../../profiles/desktop/lutris.nix
|
||||||
|
../../profiles/desktop/flatpak.nix
|
||||||
|
|
||||||
|
../../profiles/remote-builders.nix
|
||||||
|
#../../profiles/autossh-reverse-tunnels
|
||||||
|
];
|
||||||
|
|
||||||
|
networking.firewall.allowedTCPPorts = [ 57621 ]; # spotify local discovery
|
||||||
|
|
||||||
|
# Networking
|
||||||
|
networking.networkmanager.enable = true;
|
||||||
|
#networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||||
|
#networking.useDHCP = true;
|
||||||
|
#TODO: avahi? resolved? https://git.pvv.ntnu.no/Drift/pvv-nixos-config/src/main/base.nix#L15-L18
|
||||||
|
|
||||||
|
# TODO: remove? Move?
|
||||||
|
programs.dconf.enable = true;
|
||||||
|
}
|
Loading…
Reference in New Issue