NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: welp

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+7 -19
+7 -19
hosts/lairland/configuration.nix
··· 10 10 ... 11 11 }: 12 12 let 13 + # localhost + local network in HaliliFam WiFi network 13 14 baseHostsFile = 14 15 with import ../../shared/hosts-file.nix; 15 16 { 16 17 "127.0.0.1" = localhost ++ [ 17 18 "lairland.local" 18 19 "lairland.tailnet" 19 - ] 20 - }; // localNetwork.halilifam; 21 - }; 20 + "lairland.fawn-cod.ts.net" 21 + ]; 22 + } 23 + // localNetwork.halilifam; 22 24 23 25 # tailnet, blocking ads via blackholing to 0.0.0.0, etc. 24 26 extraHosts = with import ../../shared/hosts-file.nix; tailnet; ··· 88 90 # Enable touchpad support (enabled default in most desktopManager). 89 91 # services.xserver.libinput.enable = true; 90 92 91 - security.rtkit.enable = true; 92 - services.pipewire = { 93 - enable = true; 94 - alsa.enable = true; 95 - alsa.support32Bit = true; 96 - pulse.enable = true; 97 - # If you want to use JACK applications, uncomment this 98 - #jack.enable = true; 99 - 100 - # use the example session manager (no others are packaged yet so this is enabled by default, 101 - # no need to redefine it in your config for now) 102 - #media-session.enable = true; 103 - }; 104 - 105 93 # Define a user account. Don't forget to set a password with ‘passwd’. 106 94 users.users.ajhalili2006 = { 107 95 isNormalUser = true; ··· 121 109 }; 122 110 123 111 # home-manager 124 - home-manager.users.gildedguy = import ./users/ajhalili2006.nix; 112 + home-manager.users.ajhalili2006 = import ./users/ajhalili2006.nix; 125 113 126 114 # Some programs need SUID wrappers, can be configured further or are 127 115 # started in user sessions. ··· 131 119 # enableSSHSupport = true; 132 120 # }; 133 121 134 - ervices.xserver.videoDrivers = [ "nvidia" ]; 122 + services.xserver.videoDrivers = [ "nvidia" ]; 135 123 }