├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── config ├── bottom.toml ├── dunst │ └── dunstrc ├── lf │ ├── cleaner.sh │ ├── lfrc │ ├── lfrun.sh │ └── previewer.sh ├── picom.conf ├── qutebrowser │ ├── .gitignore │ ├── bookmarks │ │ └── urls │ ├── config.py │ ├── greasemonkey │ │ ├── duckduckgo.js │ │ ├── gh-pr.js │ │ ├── google-meet.js │ │ ├── hris-reg.js │ │ ├── slack.js │ │ ├── whatsapp.js │ │ ├── youtube-ad.js │ │ └── youtube-no-autoplay.js │ ├── homepage │ │ └── index.html │ ├── security.py │ ├── setup.sh │ ├── styles │ │ ├── adblocker.css │ │ ├── dark.css │ │ ├── default.css │ │ └── scrollbar.css │ ├── ui.py │ └── userscripts │ │ ├── bookmark │ │ ├── dl_music │ │ ├── format_json │ │ ├── nodemon │ │ ├── open_downloads │ │ ├── pick_useragent │ │ ├── readability-js │ │ ├── tor_identity │ │ ├── torrent │ │ └── yank ├── remind │ └── .wyrdrc ├── sxiv │ └── exec │ │ ├── image-info │ │ └── key-handler ├── vimium │ └── vimium-options.json ├── xorg │ ├── Xmodmap │ └── init.sh └── zsh │ ├── aliases.zsh │ ├── aliases │ ├── dev.zsh │ ├── dir.zsh │ ├── edit.zsh │ ├── git.zsh │ ├── ls.zsh │ ├── npm.zsh │ ├── system.zsh │ └── xplt.zsh │ ├── config.zsh │ ├── init.zsh │ ├── keys.zsh │ ├── paths.zsh │ ├── plugins.zsh │ ├── plugins │ ├── completion.zsh │ ├── fzf-cd.zsh │ ├── fzf-history.zsh │ ├── fzf-jobs.zsh │ ├── magic-enter.zsh │ ├── manpage.zsh │ ├── output-operations.zsh │ ├── sudo.zsh │ └── timer.zsh │ ├── script-runners.zsh │ ├── theme.zsh │ └── zshrc ├── configuration.nix ├── extras └── bookmarks ├── hardware ├── old-ideapad-v14 │ └── default.nix └── thinkpad-e14 │ └── default.nix ├── home.nix ├── modules ├── ai │ └── default.nix ├── calendar.home │ ├── .gitignore │ ├── default.nix │ ├── ical2org.module.nix │ └── orgmode-notifier.module.nix ├── clamav.nix ├── email.home │ ├── .gitignore │ ├── README.md │ ├── aerc-binds.conf │ ├── aerc.conf │ ├── aerc.theme.nix │ ├── default.nix │ ├── mailbox-sync.module.nix │ └── query-map.conf ├── firefox.home │ ├── autoconfig.js │ ├── chrome │ │ ├── customNewTab.uc.js │ │ ├── extensionsManager.uc.js │ │ ├── globalKeybindings.uc.js │ │ ├── loadingIndicator.uc.js │ │ ├── styles │ │ │ └── variables.css │ │ ├── userChrome.css │ │ ├── userContent.css │ │ └── utils │ │ │ ├── BootstrapLoader.js │ │ │ ├── RDFDataSource.sys.mjs │ │ │ ├── RDFManifestConverter.sys.mjs │ │ │ ├── chrome.manifest │ │ │ ├── userChrome.jsm │ │ │ └── xPref.jsm │ ├── default.nix │ ├── policies.nix │ ├── preferences.nix │ └── tridactyl │ │ ├── themes │ │ └── phenax.css │ │ └── tridactylrc ├── git.home.nix ├── kakoune │ ├── default.nix │ └── kak-tree-sitter.nix ├── keyboard │ ├── default.nix │ └── kmonad.k2.kbd ├── lockscreen.nix ├── login.nix ├── mpv.home.nix ├── music │ ├── .gitignore │ ├── client.home.nix │ ├── config.nix │ ├── default.home.nix │ └── mpd.home.nix ├── nessus-daemon │ ├── default.nix │ ├── fhs.nix │ └── module.nix ├── newsboat.home │ ├── .gitignore │ ├── config.nix │ ├── default.nix │ ├── opener.sh │ └── public-feed.nix ├── notifications │ └── default.nix ├── secfix │ ├── .gitignore │ └── default.nix ├── sound │ └── default.nix ├── torrent.nix ├── vanta-daemon │ ├── .gitignore │ ├── credentials.example.nix │ ├── default.nix │ └── module.nix ├── welcome-text.nix ├── work.nix ├── xresources.home.nix └── xresources │ ├── catcula.nix │ ├── dark.nix │ ├── rediculous.nix │ ├── tealicious.nix │ └── yelloutloud.nix ├── overlays-home.nix ├── overlays-system.nix ├── overlays ├── default.nix ├── j4-dmenu-desktop.nix ├── neovim.nix ├── pass.nix └── qutebrowser.nix ├── packages.nix ├── packages ├── anypinentry │ └── pkg.nix ├── bslock │ └── pkg.nix ├── default.nix ├── dmenu │ └── pkg.nix ├── dwm │ ├── autostart.sh │ └── pkg.nix ├── dwmblocks │ └── pkg.nix ├── sensible-apps │ ├── install.sh │ ├── pkg.nix │ └── sensible-apps.nix ├── shotkey │ └── pkg.nix ├── sidekick-dashboard │ └── pkg.nix ├── st │ └── pkg.nix └── xmonad │ ├── autostart.sh │ └── pkg.nix ├── scripts ├── artemis.sh ├── battery-watch.sh ├── bin │ ├── ai │ ├── cbedit │ ├── clocks │ ├── color-pick │ ├── dsudo │ ├── ecmd │ ├── extract-urls │ ├── file-manager │ ├── gg │ ├── help │ ├── kman │ ├── macho │ ├── ned │ ├── new-shell │ ├── open │ ├── search │ ├── sidekick │ ├── swallow │ ├── tmpmail │ ├── torque │ ├── tst │ ├── tts │ ├── upload-file │ ├── vimv │ ├── vman │ ├── web │ └── with_zsh ├── brightness.sh ├── change-tagname.sh ├── commands │ ├── :brightness │ ├── :camera-off │ ├── :camera-on │ ├── :day │ ├── :email │ ├── :gamma │ ├── :mic │ ├── :music │ ├── :netflix │ ├── :night │ ├── :play-next │ ├── :power │ ├── :snippets │ ├── :stream │ ├── :tasks │ ├── :tord │ ├── :torrent │ ├── :type │ ├── :weather │ └── :weekly-review ├── dotfiles.sh ├── firewall.sh ├── fontawesome-menu │ ├── .gitignore │ ├── fa-menu.sh │ ├── icons │ │ ├── brands │ │ ├── icons-list │ │ ├── regular │ │ └── solid │ ├── package-lock.json │ ├── package.json │ └── populate-fontsheet.js ├── fzfmenu.sh ├── image.sh ├── menuitems.sh ├── modules │ ├── rofi-menu.sh │ └── utils.sh ├── monitor.sh ├── mounter.sh ├── mouse.sh ├── music │ ├── player.sh │ ├── split-album.sh │ ├── tag-bulk.sh │ ├── tag.sh │ └── yt-music.sh ├── notify.sh ├── open-project.sh ├── orgagenda.sh ├── pass-migrate.sh ├── password_prompt.sh ├── powercontrol.sh ├── qutebrowser │ └── session-box.sh ├── rate-sx.sh ├── recording │ ├── camscreen.sh │ ├── screenrecord.sh │ └── webcam.sh ├── scheduler.sh ├── screenshot.sh ├── sessions │ └── project.sh ├── shotkey.sh ├── sound.sh ├── torrent.sh └── write-bootentry.sh └── shell ├── bucklescript.nix ├── elm.nix ├── go.nix ├── haskell.nix ├── idris.nix ├── purescript.nix └── rust.nix /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | result 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/README.md -------------------------------------------------------------------------------- /config/bottom.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/bottom.toml -------------------------------------------------------------------------------- /config/dunst/dunstrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/dunst/dunstrc -------------------------------------------------------------------------------- /config/lf/cleaner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/lf/cleaner.sh -------------------------------------------------------------------------------- /config/lf/lfrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/lf/lfrc -------------------------------------------------------------------------------- /config/lf/lfrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/lf/lfrun.sh -------------------------------------------------------------------------------- /config/lf/previewer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/lf/previewer.sh -------------------------------------------------------------------------------- /config/picom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/picom.conf -------------------------------------------------------------------------------- /config/qutebrowser/.gitignore: -------------------------------------------------------------------------------- 1 | qsettings/ 2 | autoconfig.yml 3 | quickmarks 4 | -------------------------------------------------------------------------------- /config/qutebrowser/bookmarks/urls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/bookmarks/urls -------------------------------------------------------------------------------- /config/qutebrowser/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/config.py -------------------------------------------------------------------------------- /config/qutebrowser/greasemonkey/duckduckgo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/greasemonkey/duckduckgo.js -------------------------------------------------------------------------------- /config/qutebrowser/greasemonkey/gh-pr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/greasemonkey/gh-pr.js -------------------------------------------------------------------------------- /config/qutebrowser/greasemonkey/google-meet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/greasemonkey/google-meet.js -------------------------------------------------------------------------------- /config/qutebrowser/greasemonkey/hris-reg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/greasemonkey/hris-reg.js -------------------------------------------------------------------------------- /config/qutebrowser/greasemonkey/slack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/greasemonkey/slack.js -------------------------------------------------------------------------------- /config/qutebrowser/greasemonkey/whatsapp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/greasemonkey/whatsapp.js -------------------------------------------------------------------------------- /config/qutebrowser/greasemonkey/youtube-ad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/greasemonkey/youtube-ad.js -------------------------------------------------------------------------------- /config/qutebrowser/greasemonkey/youtube-no-autoplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/greasemonkey/youtube-no-autoplay.js -------------------------------------------------------------------------------- /config/qutebrowser/homepage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/homepage/index.html -------------------------------------------------------------------------------- /config/qutebrowser/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/security.py -------------------------------------------------------------------------------- /config/qutebrowser/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/setup.sh -------------------------------------------------------------------------------- /config/qutebrowser/styles/adblocker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/styles/adblocker.css -------------------------------------------------------------------------------- /config/qutebrowser/styles/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/styles/dark.css -------------------------------------------------------------------------------- /config/qutebrowser/styles/default.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/qutebrowser/styles/scrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/styles/scrollbar.css -------------------------------------------------------------------------------- /config/qutebrowser/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/ui.py -------------------------------------------------------------------------------- /config/qutebrowser/userscripts/bookmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/userscripts/bookmark -------------------------------------------------------------------------------- /config/qutebrowser/userscripts/dl_music: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/userscripts/dl_music -------------------------------------------------------------------------------- /config/qutebrowser/userscripts/format_json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/userscripts/format_json -------------------------------------------------------------------------------- /config/qutebrowser/userscripts/nodemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/userscripts/nodemon -------------------------------------------------------------------------------- /config/qutebrowser/userscripts/open_downloads: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | sensible-terminal -e ~/.bin/with_zsh "lf ${QUTE_DOWNLOAD_DIR:-$HOME/Downloads}"; 4 | 5 | -------------------------------------------------------------------------------- /config/qutebrowser/userscripts/pick_useragent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/userscripts/pick_useragent -------------------------------------------------------------------------------- /config/qutebrowser/userscripts/readability-js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/userscripts/readability-js -------------------------------------------------------------------------------- /config/qutebrowser/userscripts/tor_identity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/userscripts/tor_identity -------------------------------------------------------------------------------- /config/qutebrowser/userscripts/torrent: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ~/scripts/torrent.sh magnet "$QUTE_URL"; 4 | -------------------------------------------------------------------------------- /config/qutebrowser/userscripts/yank: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/qutebrowser/userscripts/yank -------------------------------------------------------------------------------- /config/remind/.wyrdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/remind/.wyrdrc -------------------------------------------------------------------------------- /config/sxiv/exec/image-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/sxiv/exec/image-info -------------------------------------------------------------------------------- /config/sxiv/exec/key-handler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/sxiv/exec/key-handler -------------------------------------------------------------------------------- /config/vimium/vimium-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/vimium/vimium-options.json -------------------------------------------------------------------------------- /config/xorg/Xmodmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/xorg/Xmodmap -------------------------------------------------------------------------------- /config/xorg/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/xorg/init.sh -------------------------------------------------------------------------------- /config/zsh/aliases.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/aliases.zsh -------------------------------------------------------------------------------- /config/zsh/aliases/dev.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/aliases/dev.zsh -------------------------------------------------------------------------------- /config/zsh/aliases/dir.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/aliases/dir.zsh -------------------------------------------------------------------------------- /config/zsh/aliases/edit.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/aliases/edit.zsh -------------------------------------------------------------------------------- /config/zsh/aliases/git.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/aliases/git.zsh -------------------------------------------------------------------------------- /config/zsh/aliases/ls.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/aliases/ls.zsh -------------------------------------------------------------------------------- /config/zsh/aliases/npm.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/aliases/npm.zsh -------------------------------------------------------------------------------- /config/zsh/aliases/system.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/aliases/system.zsh -------------------------------------------------------------------------------- /config/zsh/aliases/xplt.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/aliases/xplt.zsh -------------------------------------------------------------------------------- /config/zsh/config.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/config.zsh -------------------------------------------------------------------------------- /config/zsh/init.zsh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /config/zsh/keys.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/keys.zsh -------------------------------------------------------------------------------- /config/zsh/paths.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/paths.zsh -------------------------------------------------------------------------------- /config/zsh/plugins.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/plugins.zsh -------------------------------------------------------------------------------- /config/zsh/plugins/completion.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/plugins/completion.zsh -------------------------------------------------------------------------------- /config/zsh/plugins/fzf-cd.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/plugins/fzf-cd.zsh -------------------------------------------------------------------------------- /config/zsh/plugins/fzf-history.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/plugins/fzf-history.zsh -------------------------------------------------------------------------------- /config/zsh/plugins/fzf-jobs.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/plugins/fzf-jobs.zsh -------------------------------------------------------------------------------- /config/zsh/plugins/magic-enter.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/plugins/magic-enter.zsh -------------------------------------------------------------------------------- /config/zsh/plugins/manpage.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/plugins/manpage.zsh -------------------------------------------------------------------------------- /config/zsh/plugins/output-operations.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/plugins/output-operations.zsh -------------------------------------------------------------------------------- /config/zsh/plugins/sudo.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/plugins/sudo.zsh -------------------------------------------------------------------------------- /config/zsh/plugins/timer.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/plugins/timer.zsh -------------------------------------------------------------------------------- /config/zsh/script-runners.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/script-runners.zsh -------------------------------------------------------------------------------- /config/zsh/theme.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/theme.zsh -------------------------------------------------------------------------------- /config/zsh/zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/config/zsh/zshrc -------------------------------------------------------------------------------- /configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/configuration.nix -------------------------------------------------------------------------------- /extras/bookmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/extras/bookmarks -------------------------------------------------------------------------------- /hardware/old-ideapad-v14/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/hardware/old-ideapad-v14/default.nix -------------------------------------------------------------------------------- /hardware/thinkpad-e14/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/hardware/thinkpad-e14/default.nix -------------------------------------------------------------------------------- /home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/home.nix -------------------------------------------------------------------------------- /modules/ai/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/ai/default.nix -------------------------------------------------------------------------------- /modules/calendar.home/.gitignore: -------------------------------------------------------------------------------- 1 | private.nix 2 | -------------------------------------------------------------------------------- /modules/calendar.home/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/calendar.home/default.nix -------------------------------------------------------------------------------- /modules/calendar.home/ical2org.module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/calendar.home/ical2org.module.nix -------------------------------------------------------------------------------- /modules/calendar.home/orgmode-notifier.module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/calendar.home/orgmode-notifier.module.nix -------------------------------------------------------------------------------- /modules/clamav.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/clamav.nix -------------------------------------------------------------------------------- /modules/email.home/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/email.home/.gitignore -------------------------------------------------------------------------------- /modules/email.home/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/email.home/README.md -------------------------------------------------------------------------------- /modules/email.home/aerc-binds.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/email.home/aerc-binds.conf -------------------------------------------------------------------------------- /modules/email.home/aerc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/email.home/aerc.conf -------------------------------------------------------------------------------- /modules/email.home/aerc.theme.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/email.home/aerc.theme.nix -------------------------------------------------------------------------------- /modules/email.home/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/email.home/default.nix -------------------------------------------------------------------------------- /modules/email.home/mailbox-sync.module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/email.home/mailbox-sync.module.nix -------------------------------------------------------------------------------- /modules/email.home/query-map.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/email.home/query-map.conf -------------------------------------------------------------------------------- /modules/firefox.home/autoconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/firefox.home/autoconfig.js -------------------------------------------------------------------------------- /modules/firefox.home/chrome/customNewTab.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/firefox.home/chrome/customNewTab.uc.js -------------------------------------------------------------------------------- /modules/firefox.home/chrome/extensionsManager.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/firefox.home/chrome/extensionsManager.uc.js -------------------------------------------------------------------------------- /modules/firefox.home/chrome/globalKeybindings.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/firefox.home/chrome/globalKeybindings.uc.js -------------------------------------------------------------------------------- /modules/firefox.home/chrome/loadingIndicator.uc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/firefox.home/chrome/loadingIndicator.uc.js -------------------------------------------------------------------------------- /modules/firefox.home/chrome/styles/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/firefox.home/chrome/styles/variables.css -------------------------------------------------------------------------------- /modules/firefox.home/chrome/userChrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/firefox.home/chrome/userChrome.css -------------------------------------------------------------------------------- /modules/firefox.home/chrome/userContent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/firefox.home/chrome/userContent.css -------------------------------------------------------------------------------- /modules/firefox.home/chrome/utils/BootstrapLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/firefox.home/chrome/utils/BootstrapLoader.js -------------------------------------------------------------------------------- /modules/firefox.home/chrome/utils/RDFDataSource.sys.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/firefox.home/chrome/utils/RDFDataSource.sys.mjs -------------------------------------------------------------------------------- /modules/firefox.home/chrome/utils/RDFManifestConverter.sys.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/firefox.home/chrome/utils/RDFManifestConverter.sys.mjs -------------------------------------------------------------------------------- /modules/firefox.home/chrome/utils/chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/firefox.home/chrome/utils/chrome.manifest -------------------------------------------------------------------------------- /modules/firefox.home/chrome/utils/userChrome.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/firefox.home/chrome/utils/userChrome.jsm -------------------------------------------------------------------------------- /modules/firefox.home/chrome/utils/xPref.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/firefox.home/chrome/utils/xPref.jsm -------------------------------------------------------------------------------- /modules/firefox.home/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/firefox.home/default.nix -------------------------------------------------------------------------------- /modules/firefox.home/policies.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/firefox.home/policies.nix -------------------------------------------------------------------------------- /modules/firefox.home/preferences.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/firefox.home/preferences.nix -------------------------------------------------------------------------------- /modules/firefox.home/tridactyl/themes/phenax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/firefox.home/tridactyl/themes/phenax.css -------------------------------------------------------------------------------- /modules/firefox.home/tridactyl/tridactylrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/firefox.home/tridactyl/tridactylrc -------------------------------------------------------------------------------- /modules/git.home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/git.home.nix -------------------------------------------------------------------------------- /modules/kakoune/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/kakoune/default.nix -------------------------------------------------------------------------------- /modules/kakoune/kak-tree-sitter.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/kakoune/kak-tree-sitter.nix -------------------------------------------------------------------------------- /modules/keyboard/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/keyboard/default.nix -------------------------------------------------------------------------------- /modules/keyboard/kmonad.k2.kbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/keyboard/kmonad.k2.kbd -------------------------------------------------------------------------------- /modules/lockscreen.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/lockscreen.nix -------------------------------------------------------------------------------- /modules/login.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/login.nix -------------------------------------------------------------------------------- /modules/mpv.home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/mpv.home.nix -------------------------------------------------------------------------------- /modules/music/.gitignore: -------------------------------------------------------------------------------- 1 | *.private.nix 2 | -------------------------------------------------------------------------------- /modules/music/client.home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/music/client.home.nix -------------------------------------------------------------------------------- /modules/music/config.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/music/config.nix -------------------------------------------------------------------------------- /modules/music/default.home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/music/default.home.nix -------------------------------------------------------------------------------- /modules/music/mpd.home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/music/mpd.home.nix -------------------------------------------------------------------------------- /modules/nessus-daemon/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/nessus-daemon/default.nix -------------------------------------------------------------------------------- /modules/nessus-daemon/fhs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/nessus-daemon/fhs.nix -------------------------------------------------------------------------------- /modules/nessus-daemon/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/nessus-daemon/module.nix -------------------------------------------------------------------------------- /modules/newsboat.home/.gitignore: -------------------------------------------------------------------------------- 1 | private-feed.nix 2 | -------------------------------------------------------------------------------- /modules/newsboat.home/config.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/newsboat.home/config.nix -------------------------------------------------------------------------------- /modules/newsboat.home/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/newsboat.home/default.nix -------------------------------------------------------------------------------- /modules/newsboat.home/opener.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/newsboat.home/opener.sh -------------------------------------------------------------------------------- /modules/newsboat.home/public-feed.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/newsboat.home/public-feed.nix -------------------------------------------------------------------------------- /modules/notifications/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/notifications/default.nix -------------------------------------------------------------------------------- /modules/secfix/.gitignore: -------------------------------------------------------------------------------- 1 | *.deb 2 | -------------------------------------------------------------------------------- /modules/secfix/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/secfix/default.nix -------------------------------------------------------------------------------- /modules/sound/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/sound/default.nix -------------------------------------------------------------------------------- /modules/torrent.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/torrent.nix -------------------------------------------------------------------------------- /modules/vanta-daemon/.gitignore: -------------------------------------------------------------------------------- 1 | credentials.nix 2 | -------------------------------------------------------------------------------- /modules/vanta-daemon/credentials.example.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/vanta-daemon/credentials.example.nix -------------------------------------------------------------------------------- /modules/vanta-daemon/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/vanta-daemon/default.nix -------------------------------------------------------------------------------- /modules/vanta-daemon/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/vanta-daemon/module.nix -------------------------------------------------------------------------------- /modules/welcome-text.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/welcome-text.nix -------------------------------------------------------------------------------- /modules/work.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/work.nix -------------------------------------------------------------------------------- /modules/xresources.home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/xresources.home.nix -------------------------------------------------------------------------------- /modules/xresources/catcula.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/xresources/catcula.nix -------------------------------------------------------------------------------- /modules/xresources/dark.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/xresources/dark.nix -------------------------------------------------------------------------------- /modules/xresources/rediculous.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/xresources/rediculous.nix -------------------------------------------------------------------------------- /modules/xresources/tealicious.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/xresources/tealicious.nix -------------------------------------------------------------------------------- /modules/xresources/yelloutloud.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/modules/xresources/yelloutloud.nix -------------------------------------------------------------------------------- /overlays-home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/overlays-home.nix -------------------------------------------------------------------------------- /overlays-system.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/overlays-system.nix -------------------------------------------------------------------------------- /overlays/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/overlays/default.nix -------------------------------------------------------------------------------- /overlays/j4-dmenu-desktop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/overlays/j4-dmenu-desktop.nix -------------------------------------------------------------------------------- /overlays/neovim.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/overlays/neovim.nix -------------------------------------------------------------------------------- /overlays/pass.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/overlays/pass.nix -------------------------------------------------------------------------------- /overlays/qutebrowser.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/overlays/qutebrowser.nix -------------------------------------------------------------------------------- /packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/packages.nix -------------------------------------------------------------------------------- /packages/anypinentry/pkg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/packages/anypinentry/pkg.nix -------------------------------------------------------------------------------- /packages/bslock/pkg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/packages/bslock/pkg.nix -------------------------------------------------------------------------------- /packages/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/packages/default.nix -------------------------------------------------------------------------------- /packages/dmenu/pkg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/packages/dmenu/pkg.nix -------------------------------------------------------------------------------- /packages/dwm/autostart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/packages/dwm/autostart.sh -------------------------------------------------------------------------------- /packages/dwm/pkg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/packages/dwm/pkg.nix -------------------------------------------------------------------------------- /packages/dwmblocks/pkg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/packages/dwmblocks/pkg.nix -------------------------------------------------------------------------------- /packages/sensible-apps/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/packages/sensible-apps/install.sh -------------------------------------------------------------------------------- /packages/sensible-apps/pkg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/packages/sensible-apps/pkg.nix -------------------------------------------------------------------------------- /packages/sensible-apps/sensible-apps.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/packages/sensible-apps/sensible-apps.nix -------------------------------------------------------------------------------- /packages/shotkey/pkg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/packages/shotkey/pkg.nix -------------------------------------------------------------------------------- /packages/sidekick-dashboard/pkg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/packages/sidekick-dashboard/pkg.nix -------------------------------------------------------------------------------- /packages/st/pkg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/packages/st/pkg.nix -------------------------------------------------------------------------------- /packages/xmonad/autostart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/packages/xmonad/autostart.sh -------------------------------------------------------------------------------- /packages/xmonad/pkg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/packages/xmonad/pkg.nix -------------------------------------------------------------------------------- /scripts/artemis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/artemis.sh -------------------------------------------------------------------------------- /scripts/battery-watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/battery-watch.sh -------------------------------------------------------------------------------- /scripts/bin/ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/ai -------------------------------------------------------------------------------- /scripts/bin/cbedit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/cbedit -------------------------------------------------------------------------------- /scripts/bin/clocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/clocks -------------------------------------------------------------------------------- /scripts/bin/color-pick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/color-pick -------------------------------------------------------------------------------- /scripts/bin/dsudo: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | SUDO_ASKPASS="$HOME/scripts/password_prompt.sh" sudo -A "$@"; 4 | 5 | -------------------------------------------------------------------------------- /scripts/bin/ecmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/ecmd -------------------------------------------------------------------------------- /scripts/bin/extract-urls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/extract-urls -------------------------------------------------------------------------------- /scripts/bin/file-manager: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | sensible-terminal -d "$1" -e daffm 4 | -------------------------------------------------------------------------------- /scripts/bin/gg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/gg -------------------------------------------------------------------------------- /scripts/bin/help: -------------------------------------------------------------------------------- 1 | vman -------------------------------------------------------------------------------- /scripts/bin/kman: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | kak -e "man $@; map global normal q :quit;" 4 | -------------------------------------------------------------------------------- /scripts/bin/macho: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/macho -------------------------------------------------------------------------------- /scripts/bin/ned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/ned -------------------------------------------------------------------------------- /scripts/bin/new-shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/new-shell -------------------------------------------------------------------------------- /scripts/bin/open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/open -------------------------------------------------------------------------------- /scripts/bin/search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/search -------------------------------------------------------------------------------- /scripts/bin/sidekick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/sidekick -------------------------------------------------------------------------------- /scripts/bin/swallow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/swallow -------------------------------------------------------------------------------- /scripts/bin/tmpmail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/tmpmail -------------------------------------------------------------------------------- /scripts/bin/torque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/torque -------------------------------------------------------------------------------- /scripts/bin/tst: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | tabbed -c -r 2 st -w '' "$@"; 4 | -------------------------------------------------------------------------------- /scripts/bin/tts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/tts -------------------------------------------------------------------------------- /scripts/bin/upload-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/upload-file -------------------------------------------------------------------------------- /scripts/bin/vimv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/vimv -------------------------------------------------------------------------------- /scripts/bin/vman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/vman -------------------------------------------------------------------------------- /scripts/bin/web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/web -------------------------------------------------------------------------------- /scripts/bin/with_zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/bin/with_zsh -------------------------------------------------------------------------------- /scripts/brightness.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/brightness.sh -------------------------------------------------------------------------------- /scripts/change-tagname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/change-tagname.sh -------------------------------------------------------------------------------- /scripts/commands/:brightness: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | ~/scripts/brightness.sh set $1; 4 | -------------------------------------------------------------------------------- /scripts/commands/:camera-off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/commands/:camera-off -------------------------------------------------------------------------------- /scripts/commands/:camera-on: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/commands/:camera-on -------------------------------------------------------------------------------- /scripts/commands/:day: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/commands/:day -------------------------------------------------------------------------------- /scripts/commands/:email: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | sensible-terminal -e aerc 4 | 5 | # spotify 6 | -------------------------------------------------------------------------------- /scripts/commands/:gamma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/commands/:gamma -------------------------------------------------------------------------------- /scripts/commands/:mic: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | ~/scripts/sound.sh mute-mic; 4 | -------------------------------------------------------------------------------- /scripts/commands/:music: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | sensible-terminal -e ncmpcpp 4 | 5 | # spotify 6 | -------------------------------------------------------------------------------- /scripts/commands/:netflix: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | brave https://netflix.com & disown 4 | 5 | -------------------------------------------------------------------------------- /scripts/commands/:night: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/commands/:night -------------------------------------------------------------------------------- /scripts/commands/:play-next: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/commands/:play-next -------------------------------------------------------------------------------- /scripts/commands/:power: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ~/scripts/powercontrol.sh menu 4 | -------------------------------------------------------------------------------- /scripts/commands/:snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/commands/:snippets -------------------------------------------------------------------------------- /scripts/commands/:stream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/commands/:stream -------------------------------------------------------------------------------- /scripts/commands/:tasks: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | emacsclient -c -n --eval '(phenax/open-tasks)'; 4 | 5 | -------------------------------------------------------------------------------- /scripts/commands/:tord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/commands/:tord -------------------------------------------------------------------------------- /scripts/commands/:torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/commands/:torrent -------------------------------------------------------------------------------- /scripts/commands/:type: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | xdotool type "$1" 4 | 5 | -------------------------------------------------------------------------------- /scripts/commands/:weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/commands/:weather -------------------------------------------------------------------------------- /scripts/commands/:weekly-review: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/commands/:weekly-review -------------------------------------------------------------------------------- /scripts/dotfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/dotfiles.sh -------------------------------------------------------------------------------- /scripts/firewall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/firewall.sh -------------------------------------------------------------------------------- /scripts/fontawesome-menu/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /scripts/fontawesome-menu/fa-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/fontawesome-menu/fa-menu.sh -------------------------------------------------------------------------------- /scripts/fontawesome-menu/icons/brands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/fontawesome-menu/icons/brands -------------------------------------------------------------------------------- /scripts/fontawesome-menu/icons/icons-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/fontawesome-menu/icons/icons-list -------------------------------------------------------------------------------- /scripts/fontawesome-menu/icons/regular: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/fontawesome-menu/icons/regular -------------------------------------------------------------------------------- /scripts/fontawesome-menu/icons/solid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/fontawesome-menu/icons/solid -------------------------------------------------------------------------------- /scripts/fontawesome-menu/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/fontawesome-menu/package-lock.json -------------------------------------------------------------------------------- /scripts/fontawesome-menu/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/fontawesome-menu/package.json -------------------------------------------------------------------------------- /scripts/fontawesome-menu/populate-fontsheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/fontawesome-menu/populate-fontsheet.js -------------------------------------------------------------------------------- /scripts/fzfmenu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/fzfmenu.sh -------------------------------------------------------------------------------- /scripts/image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/image.sh -------------------------------------------------------------------------------- /scripts/menuitems.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/menuitems.sh -------------------------------------------------------------------------------- /scripts/modules/rofi-menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/modules/rofi-menu.sh -------------------------------------------------------------------------------- /scripts/modules/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/modules/utils.sh -------------------------------------------------------------------------------- /scripts/monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/monitor.sh -------------------------------------------------------------------------------- /scripts/mounter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/mounter.sh -------------------------------------------------------------------------------- /scripts/mouse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/mouse.sh -------------------------------------------------------------------------------- /scripts/music/player.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/music/player.sh -------------------------------------------------------------------------------- /scripts/music/split-album.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/music/split-album.sh -------------------------------------------------------------------------------- /scripts/music/tag-bulk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/music/tag-bulk.sh -------------------------------------------------------------------------------- /scripts/music/tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/music/tag.sh -------------------------------------------------------------------------------- /scripts/music/yt-music.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/music/yt-music.sh -------------------------------------------------------------------------------- /scripts/notify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/notify.sh -------------------------------------------------------------------------------- /scripts/open-project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/open-project.sh -------------------------------------------------------------------------------- /scripts/orgagenda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/orgagenda.sh -------------------------------------------------------------------------------- /scripts/pass-migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/pass-migrate.sh -------------------------------------------------------------------------------- /scripts/password_prompt.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo -n '' | dmenu -P -p "Password :: "; 4 | 5 | -------------------------------------------------------------------------------- /scripts/powercontrol.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/powercontrol.sh -------------------------------------------------------------------------------- /scripts/qutebrowser/session-box.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/qutebrowser/session-box.sh -------------------------------------------------------------------------------- /scripts/rate-sx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/rate-sx.sh -------------------------------------------------------------------------------- /scripts/recording/camscreen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/recording/camscreen.sh -------------------------------------------------------------------------------- /scripts/recording/screenrecord.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/recording/screenrecord.sh -------------------------------------------------------------------------------- /scripts/recording/webcam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/recording/webcam.sh -------------------------------------------------------------------------------- /scripts/scheduler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/scheduler.sh -------------------------------------------------------------------------------- /scripts/screenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/screenshot.sh -------------------------------------------------------------------------------- /scripts/sessions/project.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/sessions/project.sh -------------------------------------------------------------------------------- /scripts/shotkey.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/shotkey.sh -------------------------------------------------------------------------------- /scripts/sound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/sound.sh -------------------------------------------------------------------------------- /scripts/torrent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/torrent.sh -------------------------------------------------------------------------------- /scripts/write-bootentry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/scripts/write-bootentry.sh -------------------------------------------------------------------------------- /shell/bucklescript.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/shell/bucklescript.nix -------------------------------------------------------------------------------- /shell/elm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/shell/elm.nix -------------------------------------------------------------------------------- /shell/go.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/shell/go.nix -------------------------------------------------------------------------------- /shell/haskell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/shell/haskell.nix -------------------------------------------------------------------------------- /shell/idris.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/shell/idris.nix -------------------------------------------------------------------------------- /shell/purescript.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/shell/purescript.nix -------------------------------------------------------------------------------- /shell/rust.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phenax/nixos-dotfiles/HEAD/shell/rust.nix --------------------------------------------------------------------------------