···2828 # Bootloader.
2929 boot.loader.systemd-boot.enable = true;
3030 boot.loader.efi.canTouchEfiVariables = true;
3131+ boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; # for raspi builds I guess
31323233 networking.hostName = "stellapent-cier"; # Define your hostname.
3334 #networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
···126127 #figma-agent
127128 byobu
128129 tmux
130130+ rpi-imager
129131 ];
130132131133 # Some programs need SUID wrappers, can be configured further or are
+9-4
misc/nix/nix.custom.conf
···11-# Technically shared/meta-configs.nix but as a seperate conf file
22-# since we use Determinate Nix on our systems.
11+# Technically shared/meta-configs.nix but as a seperate conf file since we use Determinate Nix
22+# on our systems.
33experimental-features = nix-command flakes auto-allocate-uids ca-derivations cgroups configurable-impure-env daemon-trust-override dynamic-derivations fetch-closure fetch-tree git-hashing impure-derivations local-overlay-store mounted-ssh-store no-url-literals parse-toml-timestamps read-only-local-store recursive-nix verified-fetches
4455-trusted-users = root gildedguy ajhalili2006 nixos
66-allowed-users = gildedguy ajhalili2006 nixos
55+# this is how it will going to work atm
66+trusted-users = root gildedguy ajhalili2006 nixos guest rapberry
77+allowed-users = gildedguy ajhalili2006 nixos guest raspberry
7899+# probably just list every arch we're using here for cross-host compat
1010+extra-platforms = aarch64-linux x86_64-linux
1111+1212+# substituters and pubkeys
813extra-substituters = https://cache.nixos.org https://nix-community.cachix.org https://devenv.cachix.org
914extra-trusted-substituters = https://cache.nixos.org https://nix-community.cachix.org https://andreijiroh-dev.cachix.org https://ajhalili2006-nixos-builds.cachix.org https://recaptime-dev.cachix.org
1015extra-trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw= ajhalili2006-nixos-builds.cachix.org-1:fA8HXvGR1i792D+CxL2iW/TQzUcyoW7zPUmC9Q4mQLg= andreijiroh-dev.cachix.org-1:7Jd0STdBOLiNu5fiA+AKwcMqQD2PA1j9zLDGyDkuyBo= recaptime-dev.cachix.org-1:b0UBO1zONf6ceTIoR06AKhgid4ZOl5kxB/gOIdZ9J6g=
+4
shared/desktop/kde-plasma.nix
···7788 # Also enable KDE Connect
99 programs.kdeconnect.enable = true;
1010+1111+ environment.systemPackages = with pkgs; [
1212+ krfb
1313+ ]
1014}