├── .conform.yaml ├── .dir-locals.el ├── .envrc ├── .github ├── renovate.json5 └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.org ├── configurations ├── home │ └── terje │ │ └── default.nix └── nixos │ ├── installer-yubikey │ ├── configuration.nix │ └── default.nix │ ├── kong │ ├── configuration.nix │ ├── default.nix │ └── hardware-configuration.nix │ └── snail │ └── configuration.nix ├── dev ├── flake-module.nix ├── flake.lock ├── flake.nix ├── nix.conf └── repl.nix ├── flake.lock ├── flake.nix ├── lib.nix ├── modules ├── home │ ├── custom │ │ ├── keybindings.nix │ │ └── keyboard.nix │ ├── home-environment.nix │ ├── profiles │ │ ├── base.nix │ │ ├── development │ │ │ ├── default.nix │ │ │ └── interface.nix │ │ ├── direnv.nix │ │ ├── git │ │ │ ├── default.nix │ │ │ └── interface.nix │ │ ├── gnupg.nix │ │ ├── high-contrast.nix │ │ ├── monochrome.nix │ │ ├── nix.nix │ │ ├── shell │ │ │ ├── default.nix │ │ │ ├── fish │ │ │ │ ├── default.nix │ │ │ │ └── interface.nix │ │ │ └── interface.nix │ │ └── user │ │ │ └── terje │ │ │ ├── browser │ │ │ ├── brave │ │ │ │ └── default.nix │ │ │ ├── firefox │ │ │ │ ├── default.nix │ │ │ │ ├── hide-nav-bar.css │ │ │ │ ├── hide-tab-bar.css │ │ │ │ └── sidebery.css │ │ │ └── qutebrowser │ │ │ │ └── default.nix │ │ │ ├── default.nix │ │ │ ├── desktop │ │ │ ├── default.nix │ │ │ ├── gnome │ │ │ │ └── default.nix │ │ │ └── niri │ │ │ │ └── default.nix │ │ │ ├── editor │ │ │ └── emacs.nix │ │ │ ├── graphical │ │ │ ├── default.nix │ │ │ └── fonts.nix │ │ │ ├── input-methods │ │ │ └── fcitx5.nix │ │ │ ├── keyboards.nix │ │ │ ├── programs │ │ │ ├── glow.nix │ │ │ ├── password-store.nix │ │ │ ├── swaylock.nix │ │ │ ├── vscode.nix │ │ │ └── waybar │ │ │ │ ├── default.nix │ │ │ │ └── style.css │ │ │ ├── services │ │ │ ├── fnott.nix │ │ │ └── swayidle.nix │ │ │ ├── shell │ │ │ ├── default.nix │ │ │ ├── fish │ │ │ │ ├── completions │ │ │ │ │ ├── curlie.fish │ │ │ │ │ ├── find-src.fish │ │ │ │ │ └── ge.fish │ │ │ │ ├── conf.d │ │ │ │ │ ├── commandline_edit.fish │ │ │ │ │ ├── commandline_eval.fish │ │ │ │ │ ├── commandline_execute.fish │ │ │ │ │ ├── commandline_math.fish │ │ │ │ │ ├── commandline_pipe.fish │ │ │ │ │ ├── commandline_stash.fish │ │ │ │ │ ├── commandline_sudo_toggle.fish │ │ │ │ │ ├── commandline_token_search_backward.fish │ │ │ │ │ ├── git_cdpath.fish │ │ │ │ │ ├── ignore_history.fish │ │ │ │ │ ├── prompt_context.fish │ │ │ │ │ ├── prompt_marker.fish │ │ │ │ │ └── setup.fish │ │ │ │ ├── default.nix │ │ │ │ └── functions │ │ │ │ │ ├── =.fish │ │ │ │ │ ├── add.fish │ │ │ │ │ ├── div.fish │ │ │ │ │ ├── find-src.fish │ │ │ │ │ ├── fish_load_colors.fish │ │ │ │ │ ├── fish_mode_prompt.fish │ │ │ │ │ ├── fish_prompt.fish │ │ │ │ │ ├── fish_right_prompt.fish │ │ │ │ │ ├── fish_save_colors.fish │ │ │ │ │ ├── fish_setup.fish │ │ │ │ │ ├── fish_title.fish │ │ │ │ │ ├── fish_user_key_bindings.fish │ │ │ │ │ ├── ge.fish │ │ │ │ │ ├── hr.fish │ │ │ │ │ ├── insist.fish │ │ │ │ │ ├── mkcd.fish │ │ │ │ │ ├── mul.fish │ │ │ │ │ ├── options.fish │ │ │ │ │ ├── print_duration.fish │ │ │ │ │ ├── read_confirm.fish │ │ │ │ │ ├── read_continue.fish │ │ │ │ │ ├── sub.fish │ │ │ │ │ └── unshift.fish │ │ │ └── nushell │ │ │ │ └── default.nix │ │ │ └── terminal │ │ │ └── foot.nix │ ├── programs │ │ ├── aspell.nix │ │ ├── browsh.nix │ │ ├── git.nix │ │ ├── glow.nix │ │ ├── nushell.nix │ │ └── qutebrowser.nix │ ├── services │ │ ├── kmonad.nix │ │ └── window-managers │ │ │ └── niri.nix │ └── targets │ │ └── generic-linux.nix └── nixos │ ├── custom │ └── keyboard.nix │ ├── home-manager-integration.nix │ └── profiles │ ├── console.nix │ ├── datadog.nix │ ├── iphone.nix │ ├── user │ └── terje │ │ ├── base.nix │ │ ├── fonts.nix │ │ ├── graphical.nix │ │ └── laptop.nix │ └── yubikey.nix ├── packages ├── default.nix ├── drduh-gpg-conf │ └── default.nix └── drduh-yubikey-guide │ └── default.nix └── shell.nix /.conform.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/.conform.yaml -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/.envrc -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/README.org -------------------------------------------------------------------------------- /configurations/home/terje/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/configurations/home/terje/default.nix -------------------------------------------------------------------------------- /configurations/nixos/installer-yubikey/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/configurations/nixos/installer-yubikey/configuration.nix -------------------------------------------------------------------------------- /configurations/nixos/installer-yubikey/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/configurations/nixos/installer-yubikey/default.nix -------------------------------------------------------------------------------- /configurations/nixos/kong/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/configurations/nixos/kong/configuration.nix -------------------------------------------------------------------------------- /configurations/nixos/kong/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/configurations/nixos/kong/default.nix -------------------------------------------------------------------------------- /configurations/nixos/kong/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/configurations/nixos/kong/hardware-configuration.nix -------------------------------------------------------------------------------- /configurations/nixos/snail/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/configurations/nixos/snail/configuration.nix -------------------------------------------------------------------------------- /dev/flake-module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/dev/flake-module.nix -------------------------------------------------------------------------------- /dev/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/dev/flake.lock -------------------------------------------------------------------------------- /dev/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/dev/flake.nix -------------------------------------------------------------------------------- /dev/nix.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/dev/nix.conf -------------------------------------------------------------------------------- /dev/repl.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/dev/repl.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/flake.nix -------------------------------------------------------------------------------- /lib.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/lib.nix -------------------------------------------------------------------------------- /modules/home/custom/keybindings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/custom/keybindings.nix -------------------------------------------------------------------------------- /modules/home/custom/keyboard.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/custom/keyboard.nix -------------------------------------------------------------------------------- /modules/home/home-environment.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/home-environment.nix -------------------------------------------------------------------------------- /modules/home/profiles/base.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/base.nix -------------------------------------------------------------------------------- /modules/home/profiles/development/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/development/default.nix -------------------------------------------------------------------------------- /modules/home/profiles/development/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/development/interface.nix -------------------------------------------------------------------------------- /modules/home/profiles/direnv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/direnv.nix -------------------------------------------------------------------------------- /modules/home/profiles/git/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/git/default.nix -------------------------------------------------------------------------------- /modules/home/profiles/git/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/git/interface.nix -------------------------------------------------------------------------------- /modules/home/profiles/gnupg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/gnupg.nix -------------------------------------------------------------------------------- /modules/home/profiles/high-contrast.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/high-contrast.nix -------------------------------------------------------------------------------- /modules/home/profiles/monochrome.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/monochrome.nix -------------------------------------------------------------------------------- /modules/home/profiles/nix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/nix.nix -------------------------------------------------------------------------------- /modules/home/profiles/shell/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/shell/default.nix -------------------------------------------------------------------------------- /modules/home/profiles/shell/fish/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/shell/fish/default.nix -------------------------------------------------------------------------------- /modules/home/profiles/shell/fish/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/shell/fish/interface.nix -------------------------------------------------------------------------------- /modules/home/profiles/shell/interface.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/shell/interface.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/browser/brave/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/browser/brave/default.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/browser/firefox/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/browser/firefox/default.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/browser/firefox/hide-nav-bar.css: -------------------------------------------------------------------------------- 1 | #navigator-toolbox { 2 | visibility: collapse; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/browser/firefox/hide-tab-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/browser/firefox/hide-tab-bar.css -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/browser/firefox/sidebery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/browser/firefox/sidebery.css -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/browser/qutebrowser/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/browser/qutebrowser/default.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/default.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/desktop/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/desktop/default.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/desktop/gnome/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/desktop/gnome/default.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/desktop/niri/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/desktop/niri/default.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/editor/emacs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/editor/emacs.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/graphical/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/graphical/default.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/graphical/fonts.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/graphical/fonts.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/input-methods/fcitx5.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/input-methods/fcitx5.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/keyboards.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/keyboards.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/programs/glow.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/programs/glow.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/programs/password-store.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/programs/password-store.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/programs/swaylock.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/programs/swaylock.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/programs/vscode.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/programs/vscode.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/programs/waybar/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/programs/waybar/default.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/programs/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/programs/waybar/style.css -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/services/fnott.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/services/fnott.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/services/swayidle.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/services/swayidle.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/default.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/completions/curlie.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/completions/curlie.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/completions/find-src.fish: -------------------------------------------------------------------------------- 1 | complete -f -c find-src -a '(ghq list)' 2 | -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/completions/ge.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/completions/ge.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/conf.d/commandline_edit.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/conf.d/commandline_edit.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/conf.d/commandline_eval.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/conf.d/commandline_eval.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/conf.d/commandline_execute.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/conf.d/commandline_execute.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/conf.d/commandline_math.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/conf.d/commandline_math.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/conf.d/commandline_pipe.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/conf.d/commandline_pipe.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/conf.d/commandline_stash.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/conf.d/commandline_stash.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/conf.d/commandline_sudo_toggle.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/conf.d/commandline_sudo_toggle.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/conf.d/commandline_token_search_backward.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/conf.d/commandline_token_search_backward.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/conf.d/git_cdpath.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/conf.d/git_cdpath.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/conf.d/ignore_history.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/conf.d/ignore_history.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/conf.d/prompt_context.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/conf.d/prompt_context.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/conf.d/prompt_marker.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/conf.d/prompt_marker.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/conf.d/setup.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/conf.d/setup.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/default.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/=.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/functions/=.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/add.fish: -------------------------------------------------------------------------------- 1 | function add 2 | = (string join '+' -- $argv) 3 | end 4 | -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/div.fish: -------------------------------------------------------------------------------- 1 | function div 2 | = (string join '/' -- $argv) 3 | end 4 | -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/find-src.fish: -------------------------------------------------------------------------------- 1 | function find-src 2 | cd (ghq root)/$argv 3 | end 4 | -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/fish_load_colors.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/functions/fish_load_colors.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/fish_mode_prompt.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/functions/fish_mode_prompt.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/fish_prompt.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/functions/fish_prompt.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/fish_right_prompt.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/functions/fish_right_prompt.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/fish_save_colors.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/functions/fish_save_colors.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/fish_setup.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/functions/fish_setup.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/fish_title.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/functions/fish_title.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/fish_user_key_bindings.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/functions/fish_user_key_bindings.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/ge.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/functions/ge.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/hr.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/functions/hr.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/insist.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/functions/insist.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/mkcd.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/functions/mkcd.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/mul.fish: -------------------------------------------------------------------------------- 1 | function mul 2 | = (string join '*' -- $argv) 3 | end 4 | -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/options.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/functions/options.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/print_duration.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/functions/print_duration.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/read_confirm.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/functions/read_confirm.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/read_continue.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/functions/read_continue.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/sub.fish: -------------------------------------------------------------------------------- 1 | function sub 2 | = (string join '-' -- $argv) 3 | end 4 | -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/fish/functions/unshift.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/fish/functions/unshift.fish -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/shell/nushell/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/shell/nushell/default.nix -------------------------------------------------------------------------------- /modules/home/profiles/user/terje/terminal/foot.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/profiles/user/terje/terminal/foot.nix -------------------------------------------------------------------------------- /modules/home/programs/aspell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/programs/aspell.nix -------------------------------------------------------------------------------- /modules/home/programs/browsh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/programs/browsh.nix -------------------------------------------------------------------------------- /modules/home/programs/git.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/programs/git.nix -------------------------------------------------------------------------------- /modules/home/programs/glow.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/programs/glow.nix -------------------------------------------------------------------------------- /modules/home/programs/nushell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/programs/nushell.nix -------------------------------------------------------------------------------- /modules/home/programs/qutebrowser.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/programs/qutebrowser.nix -------------------------------------------------------------------------------- /modules/home/services/kmonad.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/services/kmonad.nix -------------------------------------------------------------------------------- /modules/home/services/window-managers/niri.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/services/window-managers/niri.nix -------------------------------------------------------------------------------- /modules/home/targets/generic-linux.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/home/targets/generic-linux.nix -------------------------------------------------------------------------------- /modules/nixos/custom/keyboard.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/nixos/custom/keyboard.nix -------------------------------------------------------------------------------- /modules/nixos/home-manager-integration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/nixos/home-manager-integration.nix -------------------------------------------------------------------------------- /modules/nixos/profiles/console.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/nixos/profiles/console.nix -------------------------------------------------------------------------------- /modules/nixos/profiles/datadog.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/nixos/profiles/datadog.nix -------------------------------------------------------------------------------- /modules/nixos/profiles/iphone.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/nixos/profiles/iphone.nix -------------------------------------------------------------------------------- /modules/nixos/profiles/user/terje/base.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/nixos/profiles/user/terje/base.nix -------------------------------------------------------------------------------- /modules/nixos/profiles/user/terje/fonts.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/nixos/profiles/user/terje/fonts.nix -------------------------------------------------------------------------------- /modules/nixos/profiles/user/terje/graphical.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/nixos/profiles/user/terje/graphical.nix -------------------------------------------------------------------------------- /modules/nixos/profiles/user/terje/laptop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/nixos/profiles/user/terje/laptop.nix -------------------------------------------------------------------------------- /modules/nixos/profiles/yubikey.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/modules/nixos/profiles/yubikey.nix -------------------------------------------------------------------------------- /packages/default.nix: -------------------------------------------------------------------------------- 1 | _: _: 2 | 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /packages/drduh-gpg-conf/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/packages/drduh-gpg-conf/default.nix -------------------------------------------------------------------------------- /packages/drduh-yubikey-guide/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/packages/drduh-yubikey-guide/default.nix -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/terlar/nix-config/HEAD/shell.nix --------------------------------------------------------------------------------