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.

chore(nix): do more config changes bts

Signed-off-by: ajhalili2006 <ajhalili2006@gmail.com>

+21 -17
+9
flake.nix
··· 289 289 chaotic.nixosModules.default 290 290 ./hosts/live-cd/kde-plasma.nix 291 291 ]; 292 + specialArgs = { 293 + inherit 294 + zen-browser 295 + nix4vscode 296 + self 297 + chaotic 298 + nixpkgs 299 + ; 300 + }; 292 301 }; 293 302 }; 294 303 homeConfigurations = {
+10 -13
hosts/live-cd/base.nix
··· 1 1 { pkgs, nixpkgs, lib, config, ... }: 2 2 3 3 { 4 - import = [ 4 + imports = [ 5 5 ../../shared/nix.nix 6 6 ../../shared/gnupg.nix 7 7 ../../shared/locale.nix ··· 13 13 ../../shared/vscode/server.nix 14 14 ../../shared/server/ssh.nix 15 15 ../../shared/server/tailscale.nix 16 - "${nixpkgs}/nixos/modules/installer/iso-image.nix" 17 16 "${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix" 18 17 "${nixpkgs}/nixos/modules/installer/cd-dvd/latest-kernel.nix" 19 18 ]; ··· 21 20 isoImage.configurationName = lib.mkDefault "(Linux ${config.boot.kernelPackages.kernel.version})"; 22 21 23 22 networking = { 24 - hostname = "multichaos-livecd"; 23 + hostName = "multichaos-livecd"; 25 24 networkmanager.enable = true; 26 25 }; 27 26 ··· 55 54 fastfetch 56 55 ]; 57 56 58 - config = { 59 - users.users.nixos = { 60 - openssh = { 61 - authorizedKeys.keys = with import ../../shared/ssh-keys.nix; [ 62 - personal.y2022 63 - personal.passwordless 64 - personal.rp.gildedguy 65 - work.recaptime-dev.crew 66 - ]; 67 - }; 57 + users.users.nixos = { 58 + openssh = { 59 + authorizedKeys.keys = with import ../../shared/ssh-keys.nix; [ 60 + personal.y2022 61 + personal.passwordless 62 + personal.rp.gildedguy 63 + work.recaptime-dev.crew 64 + ]; 68 65 }; 69 66 }; 70 67
+1 -2
hosts/live-cd/kde-plasma.nix
··· 2 2 3 3 { 4 4 imports = [ 5 - "${nixpkgs}/nixos/modules/installer/iso-image.nix" 6 5 ./base.nix 7 6 ../../shared/desktop/fonts.nix 8 7 ]; 9 8 isoImage.edition = "graphical"; 10 9 isoImage.showConfiguration = lib.mkDefault false; 11 10 12 - specializsations.plasma.configurations = { 11 + specialisation.plasma.configuration = { 13 12 imports = [ 14 13 "${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-graphical-calamares-plasma6.nix" 15 14 ../../shared/desktop/kde-plasma.nix
+1 -1
hosts/portable/amd64/configuration.nix
··· 87 87 users.ajhalili2006 = baseHmConfig // { 88 88 home.username = "ajhalili2006"; 89 89 home.homeDirectory = "/home/ajhalili2006"; 90 - home.stateVersion = "25.05"; 90 + home.stateVersion = "26.05"; 91 91 }; 92 92 }; 93 93
-1
hosts/recoverykit/configuration.nix
··· 14 14 ../../shared/systemd.nix 15 15 ../../shared/server/ssh.nix 16 16 ../../shared/nix.nix 17 - ../../shared/systemd.nix 18 17 ]; 19 18 20 19 # Import my SSH keys to the nixos user for remote access.