My Nix Infra
nix nixos
0
fork

Configure Feed

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

risu -> aqua

ydcjeff d5227f0c 6e3a1368

+4 -4
+1 -1
config/git/config
··· 5 5 ui = true 6 6 7 7 [core] 8 - editor = vim 8 + editor = nvim 9 9 pager = delta 10 10 11 11 [delta]
+1 -1
flake.nix
··· 36 36 in 37 37 { 38 38 nixosConfigurations = { 39 - risu = utils.mkSystem ./hosts/risu; 39 + aqua = utils.mkSystem ./hosts/aqua; 40 40 }; 41 41 42 42 formatter = forAllSystems (system: nixpkgs.legacyPackages.${system}.nixfmt-tree);
+1 -1
hosts/risu/default.nix hosts/aqua/default.nix
··· 13 13 }; 14 14 boot.loader.efi.canTouchEfiVariables = true; 15 15 16 - networking.hostName = "risu"; 16 + networking.hostName = "aqua"; 17 17 18 18 # my custom options / configs 19 19 my.desktop.enableTDE = true;
hosts/risu/disk-config.nix hosts/aqua/disk-config.nix
hosts/risu/hardware-configuration.nix hosts/aqua/hardware-configuration.nix
+1 -1
modules/nixos.nix
··· 26 26 programs.gnupg.agent.enable = true; 27 27 28 28 environment.variables = { 29 - EDITOR = "vim"; 29 + EDITOR = "nvim"; 30 30 TERMINAL = "ghostty"; 31 31 BROWSER = "firefox"; 32 32 };