configurations for my servers and desktops
nix nixos flake dots dotfiles

chore: remove devins-5495

-93
-42
hosts/devins-5495/default.nix
··· 1 - { 2 - config, 3 - pkgs, 4 - ... 5 - }: { 6 - imports = [ 7 - ./hardware.nix 8 - ./services/fwupd.nix 9 - ./services/ssh.nix 10 - ./services/tailscale.nix 11 - ]; 12 - 13 - boot.loader.systemd-boot.enable = true; 14 - boot.loader.efi.canTouchEfiVariables = true; 15 - 16 - networking.hostName = "devins-5495"; 17 - networking.networkmanager.enable = true; 18 - 19 - services.displayManager.gdm.enable = true; 20 - programs.niri.enable = true; 21 - security.polkit.enable = true; 22 - services.gnome.gnome-keyring.enable = true; 23 - security.pam.services.swaylock = {}; 24 - programs.waybar.enable = true; 25 - environment.sessionVariables.NIXOS_OZONE_WL = "1"; 26 - 27 - environment.systemPackages = with pkgs; [ 28 - firefox 29 - (discord.override { 30 - withOpenASAR = true; 31 - withVencord = true; 32 - }) 33 - prismlauncher 34 - alacritty 35 - fuzzel 36 - swaylock 37 - mako 38 - swayidle 39 - ]; 40 - 41 - system.stateVersion = "25.11"; 42 - }
-35
hosts/devins-5495/hardware.nix
··· 1 - # Do not modify this file! It was generated by ‘nixos-generate-config’ 2 - # and may be overwritten by future invocations. Please make changes 3 - # to /etc/nixos/configuration.nix instead. 4 - { 5 - config, 6 - lib, 7 - pkgs, 8 - modulesPath, 9 - ... 10 - }: { 11 - imports = [ 12 - (modulesPath + "/installer/scan/not-detected.nix") 13 - ]; 14 - 15 - boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "sd_mod" "rtsx_pci_sdmmc"]; 16 - boot.initrd.kernelModules = []; 17 - boot.kernelModules = ["kvm-amd"]; 18 - boot.extraModulePackages = []; 19 - 20 - fileSystems."/" = { 21 - device = "/dev/disk/by-uuid/b8e42c06-fd74-480f-bf5e-f67c05383227"; 22 - fsType = "ext4"; 23 - }; 24 - 25 - fileSystems."/boot" = { 26 - device = "/dev/disk/by-uuid/83CD-DDA0"; 27 - fsType = "vfat"; 28 - options = ["fmask=0077" "dmask=0077"]; 29 - }; 30 - 31 - swapDevices = []; 32 - 33 - nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; 34 - hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; 35 - }
-3
hosts/devins-5495/services/fwupd.nix
··· 1 - {...}: { 2 - services.fwupd.enable = true; 3 - }
-10
hosts/devins-5495/services/ssh.nix
··· 1 - {...}: { 2 - services = { 3 - openssh = { 4 - enable = true; 5 - settings.PasswordAuthentication = false; 6 - }; 7 - 8 - fail2ban.enable = true; 9 - }; 10 - }
-3
hosts/devins-5495/services/tailscale.nix
··· 1 - {...}: { 2 - services.tailscale.enable = true; 3 - }