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(global): update configs as usual on Firebase Studio

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

+20 -12
-3
hosts/lairland/configuration.nix
··· 41 41 imports = 42 42 [ # Include the results of the hardware scan. 43 43 ./hardware-configuration.nix 44 - #../../shared/desktop/base.nix 45 - #../../shared/desktop/kde-plasma.nix 46 - ../../shared/server/ssh.nix 47 44 ../../shared/server/tailscale.nix 48 45 ../../shared/server/devenv.nix 49 46 ../../shared/server/cockpit.nix
-1
hosts/live-cd/base.nix
··· 11 11 ../../shared/shells/custom-prompts.nix 12 12 ../../shared/1password.nix 13 13 ../../shared/vscode/server.nix 14 - ../../shared/server/ssh.nix 15 14 ../../shared/server/tailscale.nix 16 15 ../../shared/desktop/yubikey.nix 17 16 "${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix"
-3
hosts/stellapent-cier/configuration.nix
··· 35 35 imports = [ 36 36 ./hardware-configuration.nix 37 37 ./broadcom.nix 38 - ../../shared/desktop/base.nix 39 38 ../../shared/desktop/kde-plasma.nix 40 - ../../shared/server/ssh.nix 41 - ../../shared/server/tailscale.nix 42 39 ../../shared/server/devenv.nix 43 40 ../../shared/server/cockpit.nix 44 41 ./users/gildedguy.nix
+2 -1
misc/starship.toml
··· 4 4 5 5 ## GENERATED BY NIXOS ## 6 6 command_timeout = 15000 7 - scan_timeout = 500 7 + scan_timeout = 5000 8 8 [aws] 9 9 symbol = " " 10 10 format = "\\[[$symbol($profile)(\\($region\\))(\\[$duration\\])]($style)\\]" ··· 326 326 disabled = false 327 327 loaded_msg = "loaded" 328 328 not_allowed_msg = "pending" 329 + format = '[$symbol$loaded/$allowed]($style) '
+7
shared/desktop/kde-plasma.nix
··· 3 3 { config, pkgs, lib, ... }: 4 4 5 5 { 6 + imports = [ 7 + ./base.nix 8 + ]; 9 + 6 10 # Enable the KDE Plasma Desktop Environment. 7 11 services.displayManager.sddm.enable = true; 8 12 services.desktopManager.plasma6.enable = true; 9 13 10 14 # Also enable KDE Connect 11 15 programs.kdeconnect.enable = true; 16 + 17 + # Manual override for pinentryPackage 18 + programs.gnupg.agent.pinentryPackage = pkgs.pinentry-qt; 12 19 13 20 environment.systemPackages = with pkgs; [ 14 21 kdePackages.krfb
+2
shared/gnupg.nix
··· 6 6 enable = true; 7 7 enableSSHSupport = true; 8 8 enableBrowserSocket = true; 9 + pinentryPackage = pkgs.pinentry-curses; 9 10 }; 10 11 11 12 environment.systemPackages = with pkgs; [ ··· 13 14 gpgme 14 15 gpgme.dev 15 16 pinentry-tty 17 + pinentry-curses 16 18 ]; 17 19 }
+1 -1
shared/locale.nix
··· 5 5 time = { 6 6 timeZone = "Asia/Manila"; 7 7 # since we're no longer being taken ahold by Windows 11 slavery in terms of hw clock 8 - # confusion, we cn set this to false to use UTC. 8 + # confusion, we can set this to false to use UTC. 9 9 hardwareClockInLocalTime = false; 10 10 }; 11 11
+7 -2
shared/meta.nix
··· 20 20 ./shells/bash.nix 21 21 ./shells/custom-prompts.nix 22 22 ./vscode/main.nix 23 + ./server/ssh.nix 24 + ./server/tailscale.nix 23 25 ]; 24 26 25 27 # and then the base packages itself ··· 36 38 # misc tools and utils 37 39 curl 38 40 wget 39 - nano 40 - neovim 41 41 fastfetch 42 42 jq 43 43 rclone 44 44 ntfsprogs 45 + 46 + # TUI-based text editors 47 + nano 48 + neovim 49 + emacs 45 50 46 51 # shell prompt customizations 47 52 starship
+1 -1
shared/shells/custom-prompts.nix
··· 10 10 "no-runtime-versions" 11 11 ]; 12 12 settings = { 13 - scan_timeout = 500; 13 + scan_timeout = 5000; 14 14 command_timeout = 15000; 15 15 directory = { 16 16 truncation_length = 4;