├── .editorconfig ├── .envrc ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── SECURITY.md ├── assets │ ├── desktop_preview.png │ ├── desktop_preview_wide.png │ └── nix-snowflake-colours.svg ├── dependabot.yml ├── labeler.yml └── workflows │ ├── check.yml.disabled │ ├── cleanup.yml │ ├── fmt.yml │ ├── iso.yml │ ├── labeler.yml │ ├── npins.yml │ ├── packages.yml │ └── prelude.yml ├── .gitignore ├── .luacheckrc ├── .luarc.json ├── .neoconf.json ├── LICENSE ├── README.md ├── docs ├── LICENSE ├── cheatsheet.md └── installing.md ├── flake.lock ├── flake.nix ├── homes ├── default.nix └── notashelf │ ├── home.nix │ ├── misc │ ├── dconf.nix │ ├── default.nix │ ├── rnnoise.nix │ └── xdg.nix │ ├── packages │ ├── cli │ │ ├── default.nix │ │ ├── desktop.nix │ │ ├── server.nix │ │ ├── shared.nix │ │ └── wayland.nix │ ├── default.nix │ ├── dev │ │ └── default.nix │ └── gui │ │ ├── 3dprint.nix │ │ ├── default.nix │ │ ├── shared.nix │ │ └── wayland.nix │ ├── programs │ ├── default.nix │ ├── graphical │ │ ├── apps │ │ │ ├── chromium │ │ │ │ └── default.nix │ │ │ ├── default.nix │ │ │ ├── discord │ │ │ │ └── default.nix │ │ │ ├── element │ │ │ │ └── default.nix │ │ │ ├── librewolf │ │ │ │ └── default.nix │ │ │ ├── obs │ │ │ │ └── default.nix │ │ │ ├── office │ │ │ │ └── default.nix │ │ │ ├── schizofox │ │ │ │ └── default.nix │ │ │ ├── spotify │ │ │ │ └── default.nix │ │ │ ├── thunderbird │ │ │ │ ├── default.nix │ │ │ │ └── settings.nix │ │ │ ├── vscode │ │ │ │ └── default.nix │ │ │ ├── webcord │ │ │ │ └── default.nix │ │ │ └── zathura │ │ │ │ └── default.nix │ │ ├── default.nix │ │ ├── gaming │ │ │ ├── chess.nix │ │ │ ├── default.nix │ │ │ ├── mangohud.nix │ │ │ └── minecraft.nix │ │ ├── launchers │ │ │ ├── anyrun │ │ │ │ ├── default.nix │ │ │ │ └── styles │ │ │ │ │ └── dark.scss │ │ │ ├── default.nix │ │ │ ├── rofi │ │ │ │ └── default.nix │ │ │ └── tofi │ │ │ │ ├── default.nix │ │ │ │ └── emoji │ │ ├── misc │ │ │ ├── default.nix │ │ │ └── wlogout │ │ │ │ └── default.nix │ │ ├── screenlock │ │ │ ├── default.nix │ │ │ ├── gtklock │ │ │ │ ├── default.nix │ │ │ │ └── styles │ │ │ │ │ └── dark.scss │ │ │ └── swaylock │ │ │ │ └── default.nix │ │ └── wms │ │ │ ├── default.nix │ │ │ ├── hyprland │ │ │ ├── config │ │ │ │ ├── binds.nix │ │ │ │ ├── decorations.nix │ │ │ │ ├── exec.nix │ │ │ │ ├── extraConfig.nix │ │ │ │ ├── general.nix │ │ │ │ ├── gestures.nix │ │ │ │ ├── input.nix │ │ │ │ ├── layout.nix │ │ │ │ ├── misc.nix │ │ │ │ └── windowrules.nix │ │ │ ├── default.nix │ │ │ └── packages │ │ │ │ ├── dbus-hyprland-env.nix │ │ │ │ ├── default.nix │ │ │ │ ├── hyprshot.nix │ │ │ │ ├── propaganda.nix │ │ │ │ └── wrapper │ │ │ │ ├── default.nix │ │ │ │ └── session.sh │ │ │ ├── i3 │ │ │ └── default.nix │ │ │ └── sway │ │ │ ├── config.nix │ │ │ └── default.nix │ ├── media │ │ ├── beets.nix │ │ ├── default.nix │ │ ├── mpv │ │ │ ├── default.nix │ │ │ └── low1k.nix │ │ ├── ncmpcpp │ │ │ ├── binds.nix │ │ │ ├── default.nix │ │ │ └── settings.nix │ │ └── packages.nix │ └── terminal │ │ ├── default.nix │ │ ├── editors │ │ ├── default.nix │ │ ├── helix │ │ │ └── default.nix │ │ └── neovim │ │ │ ├── default.nix │ │ │ ├── lua │ │ │ ├── autocmds.lua │ │ │ ├── core.lua │ │ │ ├── display │ │ │ │ ├── mouse.lua │ │ │ │ ├── numbertoggle.lua │ │ │ │ ├── split.lua │ │ │ │ └── ui.lua │ │ │ ├── ft.lua │ │ │ ├── misc │ │ │ │ ├── abbrev.lua │ │ │ │ ├── autoread.lua │ │ │ │ ├── declutter.lua │ │ │ │ ├── diagnostics.lua │ │ │ │ ├── handlers.lua │ │ │ │ ├── neovide.lua │ │ │ │ └── vscode.lua │ │ │ └── plugins │ │ │ │ └── notify.lua │ │ │ ├── mappings │ │ │ ├── insert.nix │ │ │ ├── normal.nix │ │ │ ├── select.nix │ │ │ └── terminal.nix │ │ │ ├── plugins │ │ │ ├── extra.nix │ │ │ ├── settings │ │ │ │ ├── assistant.nix │ │ │ │ ├── autocomplete.nix │ │ │ │ ├── autopairs.nix │ │ │ │ ├── binds.nix │ │ │ │ ├── comments.nix │ │ │ │ ├── dashboard.nix │ │ │ │ ├── debugger.nix │ │ │ │ ├── filetree.nix │ │ │ │ ├── gestures.nix │ │ │ │ ├── git.nix │ │ │ │ ├── languages.nix │ │ │ │ ├── lsp.nix │ │ │ │ ├── minimap.nix │ │ │ │ ├── notes.nix │ │ │ │ ├── notify.nix │ │ │ │ ├── presence.nix │ │ │ │ ├── projects.nix │ │ │ │ ├── session.nix │ │ │ │ ├── statusline.nix │ │ │ │ ├── tabline.nix │ │ │ │ ├── telescope.nix │ │ │ │ ├── template.nix │ │ │ │ ├── terminal.nix │ │ │ │ ├── theme.nix │ │ │ │ ├── treesitter.nix │ │ │ │ ├── ui.nix │ │ │ │ ├── utility.nix │ │ │ │ └── visuals.nix │ │ │ └── sources │ │ │ │ └── default.nix │ │ │ ├── runtime │ │ │ ├── after │ │ │ │ ├── ftdetect │ │ │ │ │ ├── gitconfig.lua │ │ │ │ │ └── graphql.lua │ │ │ │ ├── ftplugin │ │ │ │ │ ├── envrc.lua │ │ │ │ │ ├── gitcommit.lua │ │ │ │ │ ├── go.lua │ │ │ │ │ ├── json.lua │ │ │ │ │ ├── man.lua │ │ │ │ │ ├── markdown.lua │ │ │ │ │ ├── qf.lua │ │ │ │ │ └── xml.lua │ │ │ │ └── queries │ │ │ │ │ ├── go │ │ │ │ │ └── injections.scm │ │ │ │ │ ├── jsx │ │ │ │ │ └── injections.scm │ │ │ │ │ ├── markdown │ │ │ │ │ └── textobjects.scm │ │ │ │ │ ├── markdown_inline │ │ │ │ │ └── highlights.scm │ │ │ │ │ ├── mdx │ │ │ │ │ └── injections.scm │ │ │ │ │ ├── rust │ │ │ │ │ └── injections.scm │ │ │ │ │ └── typst │ │ │ │ │ └── highlights.scm │ │ │ └── spell │ │ │ │ ├── en.utf-8.add │ │ │ │ └── en.utf-8.add.spl │ │ │ ├── settings.nix │ │ │ └── wrapper.nix │ │ ├── emulators │ │ ├── default.nix │ │ ├── foot │ │ │ ├── default.nix │ │ │ └── presets │ │ │ │ ├── catppuccin-mocha │ │ │ │ └── colors.nix │ │ │ │ └── oxocarbon-dark │ │ │ │ └── colors.nix │ │ ├── kitty │ │ │ ├── default.nix │ │ │ └── settings.nix │ │ └── wezterm │ │ │ ├── colorSchemes.nix │ │ │ └── default.nix │ │ ├── shell │ │ ├── bash.nix │ │ ├── default.nix │ │ ├── starship.nix │ │ └── zsh │ │ │ ├── aliases.nix │ │ │ ├── default.nix │ │ │ ├── init.nix │ │ │ ├── plugins.nix │ │ │ └── rc │ │ │ ├── binds.zsh │ │ │ ├── comp.zsh │ │ │ ├── fzf-tab.zsh │ │ │ ├── misc.zsh │ │ │ ├── modules.zsh │ │ │ ├── set.zsh │ │ │ └── unset.zsh │ │ └── tools │ │ ├── bat.nix │ │ ├── bin │ │ ├── compilec │ │ │ └── compilec.sh │ │ ├── default.nix │ │ ├── extract │ │ │ └── extract.sh │ │ ├── fs-diff │ │ │ └── fs-diff.sh │ │ ├── git-peek │ │ │ └── git-peek.sh │ │ ├── preview │ │ │ └── preview.sh │ │ ├── purge-direnv │ │ │ └── purge-direnv.sh │ │ ├── rm-gpucache │ │ │ └── rm-gpucache.sh │ │ ├── show-zombie-parents │ │ │ └── show-zombie-parents.sh │ │ └── tzip │ │ │ └── tzip.sh │ │ ├── bottom.nix │ │ ├── default.nix │ │ ├── dircolors.nix │ │ ├── editorconfig.nix │ │ ├── eza.nix │ │ ├── fastfetch │ │ └── default.nix │ │ ├── fzf.nix │ │ ├── gh.nix │ │ ├── git │ │ ├── aliases.nix │ │ ├── default.nix │ │ └── ignore.nix │ │ ├── gpg.nix │ │ ├── man.nix │ │ ├── neomutt │ │ ├── binds.nix │ │ ├── colors.nix │ │ ├── default.nix │ │ ├── macros.nix │ │ └── settings.nix │ │ ├── newsboat │ │ ├── default.nix │ │ └── urls.nix │ │ ├── nix-direnv.nix │ │ ├── nix-index.nix │ │ ├── nix-init.nix │ │ ├── ranger.nix │ │ ├── ripgrep.nix │ │ ├── ssh.nix │ │ ├── tealdeer.nix │ │ ├── thefuck.nix │ │ ├── transient-services.nix │ │ ├── vifm │ │ ├── config │ │ │ ├── colors │ │ │ │ └── .gitkeep │ │ │ ├── settings │ │ │ │ ├── abbr.vifm │ │ │ │ ├── commands.vifm │ │ │ │ ├── favicons.vifm │ │ │ │ ├── ft.vifm │ │ │ │ ├── fv.vifm │ │ │ │ └── mappings.vifm │ │ │ └── vifmrc │ │ └── default.nix │ │ ├── xplr │ │ ├── default.nix │ │ └── plugins.nix │ │ ├── yazi │ │ ├── default.nix │ │ └── theme │ │ │ ├── icons.nix │ │ │ ├── manager.nix │ │ │ └── status.nix │ │ ├── zellij │ │ ├── default.nix │ │ └── layouts │ │ │ └── system.kdl │ │ └── zoxide.nix │ ├── services │ ├── default.nix │ ├── shared │ │ ├── default.nix │ │ ├── dunst │ │ │ ├── assets │ │ │ │ ├── brightness.svg │ │ │ │ ├── mic-mute.svg │ │ │ │ ├── mic.svg │ │ │ │ ├── notification.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ └── volume.svg │ │ │ └── default.nix │ │ ├── kdeconnect.nix │ │ ├── mail.nix │ │ ├── media │ │ │ ├── default.nix │ │ │ ├── easyeffects │ │ │ │ ├── default.nix │ │ │ │ └── quiet.json │ │ │ ├── mpd │ │ │ │ └── default.nix │ │ │ ├── noisetorch.nix │ │ │ └── spotifyd.nix │ │ ├── nextcloud.nix │ │ ├── transience.nix │ │ ├── tray.nix │ │ └── udiskie.nix │ ├── wayland │ │ ├── ags │ │ │ ├── .envrc │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ ├── bash │ │ │ │ │ ├── hyprctl_swallow │ │ │ │ │ ├── move_window │ │ │ │ │ └── open_window │ │ │ │ ├── default.nix │ │ │ │ └── python │ │ │ │ │ └── weather │ │ │ ├── default.nix │ │ │ ├── shell.nix │ │ │ └── src │ │ │ │ ├── .eslintrc.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── .prettierrc │ │ │ │ ├── .stylelintrc.yml │ │ │ │ ├── imports.ts │ │ │ │ ├── main.ts │ │ │ │ ├── package.json │ │ │ │ ├── pnpm-lock.yaml │ │ │ │ ├── services │ │ │ │ ├── brightness.ts │ │ │ │ ├── directoryMonitorService.ts │ │ │ │ └── inputMonitor.ts │ │ │ │ ├── style.css │ │ │ │ ├── style │ │ │ │ ├── bar │ │ │ │ │ ├── _bar.scss │ │ │ │ │ └── modules │ │ │ │ │ │ ├── _audio.scss │ │ │ │ │ │ ├── _battery.scss │ │ │ │ │ │ ├── _bluetooth.scss │ │ │ │ │ │ ├── _clock.scss │ │ │ │ │ │ ├── _launcher.scss │ │ │ │ │ │ ├── _lock.scss │ │ │ │ │ │ ├── _net.scss │ │ │ │ │ │ ├── _power.scss │ │ │ │ │ │ ├── _swallow.scss │ │ │ │ │ │ ├── _system.scss │ │ │ │ │ │ ├── _tray.scss │ │ │ │ │ │ ├── _weather.scss │ │ │ │ │ │ └── _workspaces.scss │ │ │ │ ├── beziers.scss │ │ │ │ ├── colors.scss │ │ │ │ ├── desktop │ │ │ │ │ ├── _desktop.scss │ │ │ │ │ ├── _desktopIcons.scss │ │ │ │ │ └── _desktopMenu.scss │ │ │ │ ├── fonts.scss │ │ │ │ ├── launcher │ │ │ │ │ └── _launcher.scss │ │ │ │ ├── main.scss │ │ │ │ ├── mixins.scss │ │ │ │ ├── music │ │ │ │ │ └── _music.scss │ │ │ │ ├── notifications │ │ │ │ │ └── notifications.scss │ │ │ │ ├── popups │ │ │ │ │ ├── _brightnessPopup.scss │ │ │ │ │ ├── _popups.scss │ │ │ │ │ └── _volumePopup.scss │ │ │ │ └── prelude.scss │ │ │ │ ├── tsconfig.json │ │ │ │ ├── utils │ │ │ │ ├── appIcon.ts │ │ │ │ ├── audio.ts │ │ │ │ ├── battery.ts │ │ │ │ ├── bluetooth.ts │ │ │ │ ├── desktop.ts │ │ │ │ ├── global.ts │ │ │ │ ├── hyprland.ts │ │ │ │ ├── icons.ts │ │ │ │ ├── launcher.ts │ │ │ │ ├── mpris.ts │ │ │ │ ├── network.ts │ │ │ │ ├── popupWindow.ts │ │ │ │ ├── swallow.ts │ │ │ │ ├── system.ts │ │ │ │ ├── tray.ts │ │ │ │ └── weather.ts │ │ │ │ ├── variables │ │ │ │ └── weather.ts │ │ │ │ └── windows │ │ │ │ ├── bar │ │ │ │ ├── index.ts │ │ │ │ └── modules │ │ │ │ │ ├── audio.ts │ │ │ │ │ ├── battery.ts │ │ │ │ │ ├── bluetooth.ts │ │ │ │ │ ├── clock.ts │ │ │ │ │ ├── launcher.ts │ │ │ │ │ ├── lock.ts │ │ │ │ │ ├── network.ts │ │ │ │ │ ├── power.ts │ │ │ │ │ ├── swallow.ts │ │ │ │ │ ├── system.ts │ │ │ │ │ ├── tray.ts │ │ │ │ │ ├── weather.ts │ │ │ │ │ └── workspaces.ts │ │ │ │ ├── desktop │ │ │ │ ├── index.ts │ │ │ │ └── modules │ │ │ │ │ ├── icons.ts │ │ │ │ │ └── menu.ts │ │ │ │ ├── launcher │ │ │ │ └── index.ts │ │ │ │ ├── music │ │ │ │ ├── index.ts │ │ │ │ └── modules │ │ │ │ │ ├── controls.ts │ │ │ │ │ ├── cover.ts │ │ │ │ │ ├── player_info.ts │ │ │ │ │ ├── popup_window.ts │ │ │ │ │ ├── time_info.ts │ │ │ │ │ └── title_artists.ts │ │ │ │ ├── notifications │ │ │ │ └── index.ts │ │ │ │ └── popups │ │ │ │ ├── index.ts │ │ │ │ └── modules │ │ │ │ ├── brightnessPopup.ts │ │ │ │ └── volumePopup.ts │ │ ├── clipboard │ │ │ └── default.nix │ │ ├── default.nix │ │ ├── gammastep │ │ │ └── default.nix │ │ ├── hyprpaper │ │ │ └── default.nix │ │ ├── mako │ │ │ └── default.nix │ │ ├── swaybg │ │ │ └── default.nix │ │ ├── swayidle │ │ │ └── default.nix │ │ └── waybar │ │ │ ├── default.nix │ │ │ ├── presets │ │ │ ├── catppuccin-mocha │ │ │ │ ├── config.nix │ │ │ │ └── style.nix │ │ │ └── oxocarbon-dark │ │ │ │ ├── config.nix │ │ │ │ └── style.nix │ │ │ └── scripts │ │ │ └── waybar-wttr.py │ └── x11 │ │ └── default.nix │ └── themes │ ├── default.nix │ ├── global.nix │ ├── gtk.nix │ └── qt.nix ├── hosts ├── README.md ├── apollon │ └── host.nix ├── artemis │ └── host.nix ├── atlas │ ├── fs │ │ └── default.nix │ ├── host.nix │ └── modules │ │ ├── default.nix │ │ ├── device.nix │ │ ├── system.nix │ │ └── usrEnv.nix ├── default.nix ├── enyo │ ├── btrfs.nix │ ├── fs │ │ ├── default.nix │ │ └── external.nix │ ├── host.nix │ ├── kernel │ │ ├── config │ │ │ ├── amd.nix │ │ │ ├── base.nix │ │ │ ├── low-latency.nix │ │ │ ├── security.nix │ │ │ └── unused.nix │ │ ├── default.nix │ │ └── packages │ │ │ └── xanmod.nix │ ├── modules │ │ ├── default.nix │ │ ├── device.nix │ │ ├── profiles.nix │ │ ├── style.nix │ │ ├── system.nix │ │ └── usrEnv.nix │ ├── networking.nix │ └── wireguard.nix ├── epimetheus │ ├── encryption.nix │ ├── fs │ │ └── default.nix │ ├── host.nix │ └── modules │ │ ├── default.nix │ │ ├── device.nix │ │ ├── system.nix │ │ └── usrEnv.nix ├── erebus │ ├── host.nix │ ├── image │ │ └── default.nix │ ├── system │ │ ├── boot.nix │ │ ├── default.nix │ │ ├── desktop.nix │ │ ├── environment.nix │ │ ├── fonts.nix │ │ ├── login.nix │ │ ├── networking.nix │ │ ├── nix.nix │ │ ├── programs.nix │ │ ├── security.nix │ │ ├── services.nix │ │ └── users.nix │ └── virtualization │ │ └── default.nix ├── gaea │ ├── host.nix │ └── system │ │ ├── default.nix │ │ └── programs │ │ ├── default.nix │ │ ├── git.nix │ │ └── neovim │ │ ├── config │ │ ├── init.vim │ │ ├── maps.vim │ │ └── plugins.vim │ │ └── default.nix ├── helios │ ├── fs │ │ ├── default.nix │ │ └── external.nix │ ├── host.nix │ ├── modules │ │ ├── default.nix │ │ ├── device.nix │ │ ├── services.nix │ │ ├── system.nix │ │ └── usrEnv.nix │ └── nftables.nix ├── hermes │ ├── encryption.nix │ ├── fs │ │ └── default.nix │ ├── host.nix │ ├── modules │ │ ├── default.nix │ │ ├── device.nix │ │ ├── profiles.nix │ │ ├── style.nix │ │ ├── system.nix │ │ └── usrEnv.nix │ └── networking.nix ├── icarus │ ├── fs │ │ └── default.nix │ ├── host.nix │ └── modules │ │ ├── default.nix │ │ ├── device.nix │ │ ├── system.nix │ │ └── usrEnv.nix ├── leto │ ├── fs │ │ └── default.nix │ ├── host.nix │ └── modules │ │ ├── default.nix │ │ ├── device.nix │ │ ├── system.nix │ │ └── usrEnv.nix ├── prometheus │ ├── fs │ │ └── default.nix │ ├── host.nix │ └── modules │ │ ├── default.nix │ │ ├── device.nix │ │ ├── system.nix │ │ └── usrEnv.nix └── selene │ ├── fs │ ├── default.nix │ └── external.nix │ ├── host.nix │ ├── modules │ ├── default.nix │ ├── device.nix │ ├── services.nix │ ├── system.nix │ └── usrEnv.nix │ └── nftables.nix ├── modules ├── core │ ├── common │ │ ├── docs │ │ │ └── module.nix │ │ ├── secrets │ │ │ └── module.nix │ │ └── system │ │ │ ├── README.md │ │ │ ├── activation │ │ │ └── module.nix │ │ │ ├── containers │ │ │ ├── alpha │ │ │ │ └── default.nix │ │ │ ├── beta │ │ │ │ └── default.nix │ │ │ └── module.nix │ │ │ ├── emulation │ │ │ └── module.nix │ │ │ ├── encryption │ │ │ └── module.nix │ │ │ ├── gaming │ │ │ ├── gamemode.nix │ │ │ ├── gamescope.nix │ │ │ ├── module.nix │ │ │ └── steam.nix │ │ │ ├── hardware │ │ │ ├── bluetooth.nix │ │ │ ├── cpu │ │ │ │ ├── amd │ │ │ │ │ └── default.nix │ │ │ │ ├── default.nix │ │ │ │ └── intel │ │ │ │ │ └── default.nix │ │ │ ├── gpu │ │ │ │ ├── amd │ │ │ │ │ └── default.nix │ │ │ │ ├── default.nix │ │ │ │ ├── intel │ │ │ │ │ └── default.nix │ │ │ │ └── nvidia │ │ │ │ │ └── default.nix │ │ │ ├── module.nix │ │ │ ├── multimedia │ │ │ │ ├── default.nix │ │ │ │ ├── sound │ │ │ │ │ ├── default.nix │ │ │ │ │ ├── realtime.nix │ │ │ │ │ ├── rtkit.nix │ │ │ │ │ └── servers │ │ │ │ │ │ ├── default.nix │ │ │ │ │ │ ├── pipewire │ │ │ │ │ │ ├── default.nix │ │ │ │ │ │ ├── low-latency.nix │ │ │ │ │ │ ├── settings.nix │ │ │ │ │ │ └── wireplumber │ │ │ │ │ │ │ ├── default.nix │ │ │ │ │ │ │ ├── devices.nix │ │ │ │ │ │ │ └── settings.nix │ │ │ │ │ │ └── pulse.nix │ │ │ │ └── video │ │ │ │ │ └── default.nix │ │ │ ├── redistributable.nix │ │ │ ├── tpm.nix │ │ │ └── yubikey.nix │ │ │ ├── impermanence │ │ │ └── module.nix │ │ │ ├── nix │ │ │ ├── builders.nix │ │ │ ├── documentation.nix │ │ │ ├── module.nix │ │ │ ├── nixpkgs.nix │ │ │ ├── overlays │ │ │ │ ├── default.nix │ │ │ │ └── patches │ │ │ │ │ ├── 0001-nix-default-flake.patch │ │ │ │ │ ├── 0001-nix-make-errors-great.patch │ │ │ │ │ ├── 0001-nix-reject-flake-config.patch │ │ │ │ │ ├── 0002-zsh-completion-remote-files.patch │ │ │ │ │ ├── 0002-zsh-globquote.patch │ │ │ │ │ └── 0003-nom-print-traces.patch │ │ │ ├── system.nix │ │ │ └── transcend │ │ │ │ └── default.nix │ │ │ ├── os │ │ │ ├── README.md │ │ │ ├── boot │ │ │ │ ├── generic.nix │ │ │ │ ├── loaders │ │ │ │ │ ├── default.nix │ │ │ │ │ ├── grub │ │ │ │ │ │ └── default.nix │ │ │ │ │ ├── none │ │ │ │ │ │ └── default.nix │ │ │ │ │ └── systemd-boot │ │ │ │ │ │ └── default.nix │ │ │ │ ├── module.nix │ │ │ │ ├── plymouth.nix │ │ │ │ └── secure-boot.nix │ │ │ ├── display │ │ │ │ ├── module.nix │ │ │ │ ├── wayland │ │ │ │ │ ├── default.nix │ │ │ │ │ ├── environment.nix │ │ │ │ │ ├── services.nix │ │ │ │ │ ├── wms │ │ │ │ │ │ ├── default.nix │ │ │ │ │ │ └── hyprland │ │ │ │ │ │ │ └── default.nix │ │ │ │ │ ├── xdg-portals.nix │ │ │ │ │ └── xwayland.nix │ │ │ │ └── xorg │ │ │ │ │ ├── default.nix │ │ │ │ │ ├── environment.nix │ │ │ │ │ ├── xdg-portals.nix │ │ │ │ │ └── xserver.nix │ │ │ ├── environment │ │ │ │ ├── aliases.nix │ │ │ │ ├── etc.nix │ │ │ │ ├── locale.nix │ │ │ │ ├── misc.nix │ │ │ │ ├── module.nix │ │ │ │ ├── packages.nix │ │ │ │ ├── paths.nix │ │ │ │ └── variables.nix │ │ │ ├── fs │ │ │ │ └── module.nix │ │ │ ├── misc │ │ │ │ ├── console.nix │ │ │ │ ├── crash.nix │ │ │ │ ├── journald.nix │ │ │ │ ├── module.nix │ │ │ │ └── xdg-portals.nix │ │ │ ├── networking │ │ │ │ ├── blocker.nix │ │ │ │ ├── firewall │ │ │ │ │ ├── default.nix │ │ │ │ │ ├── fail2ban.nix │ │ │ │ │ ├── nftables │ │ │ │ │ │ ├── default.nix │ │ │ │ │ │ └── rules.nix │ │ │ │ │ └── tarpit.nix │ │ │ │ ├── module.nix │ │ │ │ ├── network-manager.nix │ │ │ │ ├── optimize.nix │ │ │ │ ├── resolved.nix │ │ │ │ ├── ssh.nix │ │ │ │ ├── tailscale │ │ │ │ │ ├── autoconnect.nix │ │ │ │ │ └── default.nix │ │ │ │ ├── tcpcrypt.nix │ │ │ │ └── wireless.nix │ │ │ ├── programs │ │ │ │ ├── bash.nix │ │ │ │ ├── direnv.nix │ │ │ │ ├── git.nix │ │ │ │ ├── module.nix │ │ │ │ ├── nano.nix │ │ │ │ └── zsh.nix │ │ │ ├── services │ │ │ │ ├── fwupd.nix │ │ │ │ ├── getty.nix │ │ │ │ ├── logrotate.nix │ │ │ │ ├── module.nix │ │ │ │ ├── ntpd.nix │ │ │ │ ├── systemd │ │ │ │ │ ├── brightnessd.nix │ │ │ │ │ ├── default.nix │ │ │ │ │ ├── oomd.nix │ │ │ │ │ └── timesyncd.nix │ │ │ │ ├── thermald.nix │ │ │ │ └── zram.nix │ │ │ └── users │ │ │ │ ├── builder.nix │ │ │ │ ├── module.nix │ │ │ │ ├── notashelf.nix │ │ │ │ └── root.nix │ │ │ ├── security │ │ │ ├── apparmor.nix │ │ │ ├── auditd.nix │ │ │ ├── clamav.nix │ │ │ ├── fprint.nix │ │ │ ├── impurity-tracker.nix │ │ │ ├── kernel.nix │ │ │ ├── memalloc.nix │ │ │ ├── module.nix │ │ │ ├── pam.nix │ │ │ ├── pki.nix │ │ │ ├── polkit.nix │ │ │ ├── selinux.nix │ │ │ ├── sudo.nix │ │ │ ├── usbguard.nix │ │ │ └── virtualization.nix │ │ │ ├── switch │ │ │ └── module.nix │ │ │ └── virtualization │ │ │ ├── distrobox.nix │ │ │ ├── module.nix │ │ │ ├── podman.nix │ │ │ ├── qemu.nix │ │ │ └── waydroid.nix │ ├── profiles │ │ ├── gaming │ │ │ └── module.nix │ │ └── workstation │ │ │ └── module.nix │ └── roles │ │ ├── graphical │ │ └── system │ │ │ ├── environment.nix │ │ │ ├── module.nix │ │ │ ├── security │ │ │ ├── default.nix │ │ │ └── polkit.nix │ │ │ └── services │ │ │ ├── default.nix │ │ │ ├── login │ │ │ ├── default.nix │ │ │ ├── greetd.nix │ │ │ ├── logind.nix │ │ │ ├── pam.nix │ │ │ └── session.nix │ │ │ └── xserver.nix │ │ ├── headless │ │ └── system │ │ │ ├── documentation.nix │ │ │ ├── environment.nix │ │ │ ├── fonts.nix │ │ │ ├── module.nix │ │ │ ├── nix.nix │ │ │ ├── programs.nix │ │ │ ├── services.nix │ │ │ ├── systemd.nix │ │ │ ├── users.nix │ │ │ └── xdg.nix │ │ ├── iso │ │ ├── image │ │ │ └── module.nix │ │ └── system │ │ │ ├── boot.nix │ │ │ ├── environment.nix │ │ │ ├── hardware.nix │ │ │ ├── misc │ │ │ ├── console.nix │ │ │ └── default.nix │ │ │ ├── module.nix │ │ │ ├── networking.nix │ │ │ ├── nix.nix │ │ │ ├── security.nix │ │ │ ├── services │ │ │ ├── default.nix │ │ │ ├── logrotate.nix │ │ │ └── openssh.nix │ │ │ └── users.nix │ │ ├── laptop │ │ └── system │ │ │ ├── module.nix │ │ │ ├── power │ │ │ ├── default.nix │ │ │ └── monitors │ │ │ │ ├── auto-cpufreq.nix │ │ │ │ ├── power-profiles.nix │ │ │ │ ├── scripts │ │ │ │ └── power_monitor.sh │ │ │ │ └── tlp.nix │ │ │ └── touchpad.nix │ │ ├── microvm │ │ └── system │ │ │ ├── default.nix │ │ │ ├── nix │ │ │ └── default.nix │ │ │ ├── os │ │ │ ├── default.nix │ │ │ ├── environment.nix │ │ │ ├── networking.nix │ │ │ ├── programs │ │ │ │ ├── default.nix │ │ │ │ ├── git.nix │ │ │ │ ├── neovim.nix │ │ │ │ ├── tmux.nix │ │ │ │ └── zsh.nix │ │ │ └── users │ │ │ │ ├── admin.nix │ │ │ │ └── default.nix │ │ │ └── security │ │ │ └── default.nix │ │ ├── server │ │ └── system │ │ │ ├── module.nix │ │ │ └── services │ │ │ ├── bincache │ │ │ ├── atticd.nix │ │ │ ├── default.nix │ │ │ ├── harmonia.nix │ │ │ └── nix-serve.nix │ │ │ ├── databases │ │ │ ├── default.nix │ │ │ ├── garage.nix │ │ │ ├── mongodb.nix │ │ │ ├── mysql.nix │ │ │ ├── postgresql.nix │ │ │ └── redis.nix │ │ │ ├── default.nix │ │ │ ├── elasticsearch.nix │ │ │ ├── forgejo-runner.nix │ │ │ ├── forgejo.nix │ │ │ ├── jellyfin.nix │ │ │ ├── kanidm.nix │ │ │ ├── mailserver.nix │ │ │ ├── miniflux.nix │ │ │ ├── mkm.nix │ │ │ ├── monitoring │ │ │ ├── default.nix │ │ │ ├── grafana │ │ │ │ ├── dashboards.nix │ │ │ │ ├── default.nix │ │ │ │ └── objects │ │ │ │ │ └── dashboards │ │ │ │ │ ├── dashboard-01.json │ │ │ │ │ └── dashboard-02.json │ │ │ ├── loki.nix │ │ │ ├── prometheus.nix │ │ │ └── uptime-kuma.nix │ │ │ ├── networking │ │ │ ├── default.nix │ │ │ ├── headscale │ │ │ │ ├── acls.nix │ │ │ │ ├── default.nix │ │ │ │ ├── derp.nix │ │ │ │ └── dns.nix │ │ │ └── wireguard │ │ │ │ ├── default.nix │ │ │ │ ├── server.nix │ │ │ │ └── wg-quick.nix │ │ │ ├── nextcloud.nix │ │ │ ├── nginx │ │ │ ├── default.nix │ │ │ └── static │ │ │ │ ├── gpg.txt │ │ │ │ ├── header.txt │ │ │ │ └── root.txt │ │ │ ├── reposilite.nix │ │ │ ├── searxng.nix │ │ │ ├── social │ │ │ ├── default.nix │ │ │ ├── mastodon.nix │ │ │ └── matrix.nix │ │ │ ├── tor.nix │ │ │ └── vaultwarden.nix │ │ └── workstation │ │ └── system │ │ ├── fonts.nix │ │ ├── misc.nix │ │ ├── module.nix │ │ ├── programs │ │ ├── ccache.nix │ │ ├── default.nix │ │ ├── flatpak.nix │ │ ├── java.nix │ │ ├── misc.nix │ │ ├── nh.nix │ │ ├── wine.nix │ │ └── xdg-ninja.nix │ │ ├── security │ │ ├── default.nix │ │ ├── firejail.nix │ │ └── tor.nix │ │ └── services │ │ ├── adb.nix │ │ ├── dbus.nix │ │ ├── default.nix │ │ ├── earlyoom.nix │ │ ├── gnome.nix │ │ ├── location.nix │ │ ├── misc.nix │ │ ├── printing.nix │ │ ├── runners.nix │ │ ├── systemd.nix │ │ └── zswap.nix ├── extra │ ├── exported │ │ └── onedev │ │ │ └── default.nix │ └── shared │ │ ├── default.nix │ │ ├── home-manager │ │ ├── default.nix │ │ ├── gtklock │ │ │ └── default.nix │ │ ├── transience │ │ │ └── default.nix │ │ ├── vifm │ │ │ └── default.nix │ │ └── xplr │ │ │ └── default.nix │ │ └── nixos │ │ ├── comma │ │ └── default.nix │ │ ├── default.nix │ │ ├── reposilite │ │ └── default.nix │ │ └── wakapi │ │ └── default.nix └── options │ ├── README.md │ ├── device │ ├── capabilities.nix │ ├── hardware.nix │ └── module.nix │ ├── docs │ └── module.nix │ ├── internal │ ├── module.nix │ ├── removed.nix │ └── renamed.nix │ ├── meta │ └── module.nix │ ├── profiles │ └── module.nix │ ├── style │ ├── colors.nix │ ├── gtk.nix │ ├── module.nix │ ├── palettes │ │ ├── angel-light.nix │ │ ├── black-metal.nix │ │ ├── carbon-dark.nix │ │ ├── catppuccin-frappe.nix │ │ ├── catppuccin-macchiato.nix │ │ ├── catppuccin-mocha.nix │ │ ├── decay-dark.nix │ │ ├── default-dark.nix │ │ ├── monochrome.nix │ │ ├── noelle.nix │ │ ├── oxocarbon-dark.nix │ │ ├── tokyo-night.nix │ │ └── varda-theme.nix │ └── qt.nix │ ├── system │ ├── activation.nix │ ├── boot.nix │ ├── containers.nix │ ├── emulation.nix │ ├── encryption.nix │ ├── fs.nix │ ├── impermanence.nix │ ├── module.nix │ ├── networking │ │ ├── default.nix │ │ ├── nftables.nix │ │ └── tailscale.nix │ ├── programs │ │ ├── default.nix │ │ └── gaming.nix │ ├── security.nix │ ├── services │ │ ├── bincache.nix │ │ ├── databases.nix │ │ ├── default.nix │ │ ├── monitoring.nix │ │ ├── networking.nix │ │ └── social.nix │ └── virtualization.nix │ └── usrEnv │ ├── brightness.nix │ ├── desktop.nix │ ├── module.nix │ ├── programs │ ├── default.nix │ ├── gaming.nix │ ├── launchers.nix │ ├── lockers.nix │ └── media.nix │ └── services │ ├── default.nix │ └── media.nix ├── parts ├── apps │ ├── build-all-hosts │ │ └── app.nix │ ├── check-restart │ │ └── app.nix │ ├── check-store-errors │ │ └── app.nix │ ├── default.nix │ ├── mount-local-disks │ │ └── app.nix │ ├── prefetch-url-sha256 │ │ └── app.nix │ └── upgrade-postgresql │ │ └── app.nix ├── args.nix ├── checks │ └── default.nix ├── ci.nix ├── default.nix ├── deployments.nix ├── fmt.nix ├── hydra.nix ├── iso-images.nix ├── keys.nix ├── lib │ ├── aliases.nix │ ├── builders.nix │ ├── ci.nix │ ├── conversion.nix │ ├── dag.nix │ ├── default.nix │ ├── deploy.nix │ ├── firewall.nix │ ├── fs.nix │ ├── hardware.nix │ ├── misc.nix │ ├── modules.nix │ ├── namespacing.nix │ ├── networking.nix │ ├── secrets.nix │ ├── ssh.nix │ ├── systemd.nix │ ├── themes.nix │ ├── validators.nix │ └── xdg.nix ├── modules │ └── default.nix ├── npins │ ├── default.nix │ └── sources.json ├── pkgs │ ├── default.nix │ └── packages │ │ ├── nicksfetch │ │ ├── package.nix │ │ └── patches │ │ │ └── 0001-nicksfetch.patch │ │ ├── plymouth-themes │ │ └── package.nix │ │ └── schizofox-startpage │ │ ├── package.nix │ │ └── src │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── assets │ │ ├── blossom.png │ │ ├── desperation.png │ │ ├── flowerprint.png │ │ ├── flowers.png │ │ ├── logs.png │ │ ├── malachite.png │ │ ├── planet.png │ │ └── sway.png │ │ ├── index.html │ │ ├── search.js │ │ └── style.css ├── pre-commit │ ├── default.nix │ ├── hooks │ │ ├── exiftool.nix │ │ ├── git-cliff.nix │ │ ├── prettier.nix │ │ └── typos.nix │ └── utils.nix ├── shell.nix └── templates │ ├── c │ ├── .editorconfig │ ├── .gitignore │ ├── Makefile │ ├── default.nix │ ├── flake.nix │ ├── shell.nix │ └── src │ │ └── main.cpp │ ├── default.nix │ ├── go │ ├── .envrc │ ├── cmd │ │ └── main.go │ ├── default.nix │ ├── flake.nix │ └── shell.nix │ ├── node │ ├── .gitignore │ ├── default.nix │ ├── flake.nix │ ├── package.json │ ├── shell.nix │ ├── src │ │ └── index.ts │ └── tsconfig.json │ ├── python │ ├── .envrc │ ├── default.nix │ ├── flake.nix │ └── shell.nix │ └── rust │ ├── Cargo.toml │ ├── default.nix │ ├── flake.nix │ ├── shell.nix │ └── src │ └── main.rs ├── shell.nix ├── statix.toml └── stylua.toml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.envrc -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @notashelf -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/assets/desktop_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.github/assets/desktop_preview.png -------------------------------------------------------------------------------- /.github/assets/desktop_preview_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.github/assets/desktop_preview_wide.png -------------------------------------------------------------------------------- /.github/assets/nix-snowflake-colours.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.github/assets/nix-snowflake-colours.svg -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.github/workflows/check.yml.disabled -------------------------------------------------------------------------------- /.github/workflows/cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.github/workflows/cleanup.yml -------------------------------------------------------------------------------- /.github/workflows/fmt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.github/workflows/fmt.yml -------------------------------------------------------------------------------- /.github/workflows/iso.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.github/workflows/iso.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/npins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.github/workflows/npins.yml -------------------------------------------------------------------------------- /.github/workflows/packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.github/workflows/packages.yml -------------------------------------------------------------------------------- /.github/workflows/prelude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.github/workflows/prelude.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.gitignore -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.luacheckrc -------------------------------------------------------------------------------- /.luarc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.luarc.json -------------------------------------------------------------------------------- /.neoconf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/.neoconf.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/README.md -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/docs/cheatsheet.md -------------------------------------------------------------------------------- /docs/installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/docs/installing.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/flake.nix -------------------------------------------------------------------------------- /homes/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/default.nix -------------------------------------------------------------------------------- /homes/notashelf/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/home.nix -------------------------------------------------------------------------------- /homes/notashelf/misc/dconf.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/misc/dconf.nix -------------------------------------------------------------------------------- /homes/notashelf/misc/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/misc/default.nix -------------------------------------------------------------------------------- /homes/notashelf/misc/rnnoise.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/misc/rnnoise.nix -------------------------------------------------------------------------------- /homes/notashelf/misc/xdg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/misc/xdg.nix -------------------------------------------------------------------------------- /homes/notashelf/packages/cli/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/packages/cli/default.nix -------------------------------------------------------------------------------- /homes/notashelf/packages/cli/desktop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/packages/cli/desktop.nix -------------------------------------------------------------------------------- /homes/notashelf/packages/cli/server.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/packages/cli/server.nix -------------------------------------------------------------------------------- /homes/notashelf/packages/cli/shared.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/packages/cli/shared.nix -------------------------------------------------------------------------------- /homes/notashelf/packages/cli/wayland.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/packages/cli/wayland.nix -------------------------------------------------------------------------------- /homes/notashelf/packages/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/packages/default.nix -------------------------------------------------------------------------------- /homes/notashelf/packages/dev/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/packages/dev/default.nix -------------------------------------------------------------------------------- /homes/notashelf/packages/gui/3dprint.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/packages/gui/3dprint.nix -------------------------------------------------------------------------------- /homes/notashelf/packages/gui/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/packages/gui/default.nix -------------------------------------------------------------------------------- /homes/notashelf/packages/gui/shared.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/packages/gui/shared.nix -------------------------------------------------------------------------------- /homes/notashelf/packages/gui/wayland.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/packages/gui/wayland.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/apps/chromium/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/apps/chromium/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/apps/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/apps/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/apps/discord/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/apps/discord/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/apps/element/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/apps/element/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/apps/librewolf/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/apps/librewolf/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/apps/obs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/apps/obs/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/apps/office/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/apps/office/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/apps/schizofox/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/apps/schizofox/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/apps/spotify/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/apps/spotify/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/apps/thunderbird/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/apps/thunderbird/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/apps/thunderbird/settings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/apps/thunderbird/settings.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/apps/vscode/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/apps/vscode/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/apps/webcord/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/apps/webcord/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/apps/zathura/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/apps/zathura/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/gaming/chess.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/gaming/chess.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/gaming/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/gaming/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/gaming/mangohud.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/gaming/mangohud.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/gaming/minecraft.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/gaming/minecraft.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/launchers/anyrun/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/launchers/anyrun/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/launchers/anyrun/styles/dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/launchers/anyrun/styles/dark.scss -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/launchers/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/launchers/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/launchers/rofi/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/launchers/rofi/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/launchers/tofi/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/launchers/tofi/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/launchers/tofi/emoji: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/launchers/tofi/emoji -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/misc/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/misc/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/misc/wlogout/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/misc/wlogout/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/screenlock/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/screenlock/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/screenlock/gtklock/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/screenlock/gtklock/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/screenlock/swaylock/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/screenlock/swaylock/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/wms/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/wms/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/wms/hyprland/config/binds.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/wms/hyprland/config/binds.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/wms/hyprland/config/exec.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/wms/hyprland/config/exec.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/wms/hyprland/config/general.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/wms/hyprland/config/general.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/wms/hyprland/config/gestures.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/wms/hyprland/config/gestures.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/wms/hyprland/config/input.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/wms/hyprland/config/input.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/wms/hyprland/config/layout.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/wms/hyprland/config/layout.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/wms/hyprland/config/misc.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/wms/hyprland/config/misc.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/wms/hyprland/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/wms/hyprland/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/wms/hyprland/packages/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/wms/hyprland/packages/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/wms/hyprland/packages/hyprshot.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/wms/hyprland/packages/hyprshot.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/wms/i3/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/wms/i3/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/wms/sway/config.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/wms/sway/config.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/graphical/wms/sway/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/graphical/wms/sway/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/media/beets.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/media/beets.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/media/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/media/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/media/mpv/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/media/mpv/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/media/mpv/low1k.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/media/mpv/low1k.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/media/ncmpcpp/binds.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/media/ncmpcpp/binds.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/media/ncmpcpp/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/media/ncmpcpp/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/media/ncmpcpp/settings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/media/ncmpcpp/settings.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/media/packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/media/packages.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/editors/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/editors/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/editors/helix/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/editors/helix/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/editors/neovim/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/editors/neovim/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/editors/neovim/lua/autocmds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/editors/neovim/lua/autocmds.lua -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/editors/neovim/lua/core.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/editors/neovim/lua/core.lua -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/editors/neovim/lua/display/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/editors/neovim/lua/display/ui.lua -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/editors/neovim/lua/ft.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/editors/neovim/lua/ft.lua -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/editors/neovim/lua/misc/abbrev.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/editors/neovim/lua/misc/abbrev.lua -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/editors/neovim/lua/misc/neovide.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/editors/neovim/lua/misc/neovide.lua -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/editors/neovim/lua/misc/vscode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/editors/neovim/lua/misc/vscode.lua -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/editors/neovim/mappings/insert.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/editors/neovim/mappings/insert.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/editors/neovim/mappings/normal.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/editors/neovim/mappings/normal.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/editors/neovim/mappings/select.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/editors/neovim/mappings/select.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/editors/neovim/plugins/extra.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/editors/neovim/plugins/extra.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/editors/neovim/plugins/settings/template.nix: -------------------------------------------------------------------------------- 1 | { 2 | programs.nvf.settings.vim = { 3 | }; 4 | } 5 | -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/editors/neovim/runtime/after/ftplugin/gitcommit.lua: -------------------------------------------------------------------------------- 1 | -- luacheck: ignore 2 | vim.opt_local.textwidth = 80 3 | -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/editors/neovim/runtime/after/ftplugin/qf.lua: -------------------------------------------------------------------------------- 1 | -- luacheck: ignore 2 | vim.wo.wrap = true 3 | -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/editors/neovim/runtime/after/ftplugin/xml.lua: -------------------------------------------------------------------------------- 1 | -- luacheck: ignore 2 | vim.opt_local.shiftwidth = 2 3 | -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/editors/neovim/settings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/editors/neovim/settings.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/editors/neovim/wrapper.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/editors/neovim/wrapper.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/emulators/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/emulators/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/emulators/foot/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/emulators/foot/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/emulators/kitty/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/emulators/kitty/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/emulators/kitty/settings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/emulators/kitty/settings.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/emulators/wezterm/colorSchemes.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/emulators/wezterm/colorSchemes.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/emulators/wezterm/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/emulators/wezterm/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/shell/bash.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/shell/bash.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/shell/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/shell/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/shell/starship.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/shell/starship.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/shell/zsh/aliases.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/shell/zsh/aliases.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/shell/zsh/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/shell/zsh/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/shell/zsh/init.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/shell/zsh/init.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/shell/zsh/plugins.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/shell/zsh/plugins.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/shell/zsh/rc/binds.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/shell/zsh/rc/binds.zsh -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/shell/zsh/rc/comp.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/shell/zsh/rc/comp.zsh -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/shell/zsh/rc/fzf-tab.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/shell/zsh/rc/fzf-tab.zsh -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/shell/zsh/rc/misc.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/shell/zsh/rc/misc.zsh -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/shell/zsh/rc/modules.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/shell/zsh/rc/modules.zsh -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/shell/zsh/rc/set.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/shell/zsh/rc/set.zsh -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/shell/zsh/rc/unset.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/shell/zsh/rc/unset.zsh -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/bat.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/bat.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/bin/compilec/compilec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/bin/compilec/compilec.sh -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/bin/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/bin/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/bin/extract/extract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/bin/extract/extract.sh -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/bin/fs-diff/fs-diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/bin/fs-diff/fs-diff.sh -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/bin/git-peek/git-peek.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/bin/git-peek/git-peek.sh -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/bin/preview/preview.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/bin/preview/preview.sh -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/bin/tzip/tzip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/bin/tzip/tzip.sh -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/bottom.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/bottom.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/dircolors.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/dircolors.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/editorconfig.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/editorconfig.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/eza.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/eza.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/fastfetch/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/fastfetch/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/fzf.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/fzf.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/gh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/gh.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/git/aliases.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/git/aliases.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/git/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/git/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/git/ignore.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/git/ignore.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/gpg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/gpg.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/man.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/man.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/neomutt/binds.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/neomutt/binds.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/neomutt/colors.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/neomutt/colors.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/neomutt/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/neomutt/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/neomutt/macros.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/neomutt/macros.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/neomutt/settings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/neomutt/settings.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/newsboat/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/newsboat/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/newsboat/urls.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/newsboat/urls.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/nix-direnv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/nix-direnv.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/nix-index.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/nix-index.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/nix-init.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/nix-init.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/ranger.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/ranger.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/ripgrep.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/ripgrep.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/ssh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/ssh.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/tealdeer.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/tealdeer.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/thefuck.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/thefuck.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/transient-services.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/transient-services.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/vifm/config/colors/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/vifm/config/settings/ft.vifm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/vifm/config/settings/ft.vifm -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/vifm/config/settings/fv.vifm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/vifm/config/settings/fv.vifm -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/vifm/config/vifmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/vifm/config/vifmrc -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/vifm/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/vifm/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/xplr/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/xplr/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/xplr/plugins.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/xplr/plugins.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/yazi/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/yazi/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/yazi/theme/icons.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/yazi/theme/icons.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/yazi/theme/manager.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/yazi/theme/manager.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/yazi/theme/status.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/yazi/theme/status.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/zellij/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/zellij/default.nix -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/zellij/layouts/system.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/zellij/layouts/system.kdl -------------------------------------------------------------------------------- /homes/notashelf/programs/terminal/tools/zoxide.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/programs/terminal/tools/zoxide.nix -------------------------------------------------------------------------------- /homes/notashelf/services/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/default.nix -------------------------------------------------------------------------------- /homes/notashelf/services/shared/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/shared/default.nix -------------------------------------------------------------------------------- /homes/notashelf/services/shared/dunst/assets/brightness.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/shared/dunst/assets/brightness.svg -------------------------------------------------------------------------------- /homes/notashelf/services/shared/dunst/assets/mic-mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/shared/dunst/assets/mic-mute.svg -------------------------------------------------------------------------------- /homes/notashelf/services/shared/dunst/assets/mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/shared/dunst/assets/mic.svg -------------------------------------------------------------------------------- /homes/notashelf/services/shared/dunst/assets/notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/shared/dunst/assets/notification.svg -------------------------------------------------------------------------------- /homes/notashelf/services/shared/dunst/assets/volume-mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/shared/dunst/assets/volume-mute.svg -------------------------------------------------------------------------------- /homes/notashelf/services/shared/dunst/assets/volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/shared/dunst/assets/volume.svg -------------------------------------------------------------------------------- /homes/notashelf/services/shared/dunst/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/shared/dunst/default.nix -------------------------------------------------------------------------------- /homes/notashelf/services/shared/kdeconnect.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/shared/kdeconnect.nix -------------------------------------------------------------------------------- /homes/notashelf/services/shared/mail.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/shared/mail.nix -------------------------------------------------------------------------------- /homes/notashelf/services/shared/media/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/shared/media/default.nix -------------------------------------------------------------------------------- /homes/notashelf/services/shared/media/easyeffects/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/shared/media/easyeffects/default.nix -------------------------------------------------------------------------------- /homes/notashelf/services/shared/media/easyeffects/quiet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/shared/media/easyeffects/quiet.json -------------------------------------------------------------------------------- /homes/notashelf/services/shared/media/mpd/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/shared/media/mpd/default.nix -------------------------------------------------------------------------------- /homes/notashelf/services/shared/media/noisetorch.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/shared/media/noisetorch.nix -------------------------------------------------------------------------------- /homes/notashelf/services/shared/media/spotifyd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/shared/media/spotifyd.nix -------------------------------------------------------------------------------- /homes/notashelf/services/shared/nextcloud.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/shared/nextcloud.nix -------------------------------------------------------------------------------- /homes/notashelf/services/shared/transience.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/shared/transience.nix -------------------------------------------------------------------------------- /homes/notashelf/services/shared/tray.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/shared/tray.nix -------------------------------------------------------------------------------- /homes/notashelf/services/shared/udiskie.nix: -------------------------------------------------------------------------------- 1 | { 2 | services.udiskie.enable = true; 3 | } 4 | -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/.envrc: -------------------------------------------------------------------------------- 1 | use nix 2 | -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/README.md -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/bin/bash/hyprctl_swallow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/bin/bash/hyprctl_swallow -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/bin/bash/move_window: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/bin/bash/move_window -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/bin/bash/open_window: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/bin/bash/open_window -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/bin/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/bin/default.nix -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/bin/python/weather: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/bin/python/weather -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/default.nix -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/shell.nix -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/.eslintrc.yml -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/.gitignore -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/.stylelintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/.stylelintrc.yml -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/imports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/imports.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/main.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/package.json -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/pnpm-lock.yaml -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/services/brightness.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/services/brightness.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/services/inputMonitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/services/inputMonitor.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/style.css -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/style/bar/_bar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/style/bar/_bar.scss -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/style/bar/modules/_audio.scss: -------------------------------------------------------------------------------- 1 | .audio { 2 | @include barModule; 3 | } 4 | -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/style/bar/modules/_battery.scss: -------------------------------------------------------------------------------- 1 | .battery { 2 | @include barModule; 3 | } 4 | -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/style/bar/modules/_lock.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/style/bar/modules/_lock.scss -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/style/bar/modules/_net.scss: -------------------------------------------------------------------------------- 1 | .network { 2 | @include barModule; 3 | } 4 | -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/style/bar/modules/_swallow.scss: -------------------------------------------------------------------------------- 1 | .swallow { 2 | @include barModule; 3 | } 4 | -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/style/bar/modules/_tray.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/style/bar/modules/_tray.scss -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/style/beziers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/style/beziers.scss -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/style/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/style/colors.scss -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/style/desktop/_desktop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/style/desktop/_desktop.scss -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/style/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/style/fonts.scss -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/style/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/style/main.scss -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/style/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/style/mixins.scss -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/style/music/_music.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/style/music/_music.scss -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/style/popups/_popups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/style/popups/_popups.scss -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/style/prelude.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/style/prelude.scss -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/tsconfig.json -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/utils/appIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/utils/appIcon.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/utils/audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/utils/audio.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/utils/battery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/utils/battery.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/utils/bluetooth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/utils/bluetooth.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/utils/desktop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/utils/desktop.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/utils/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/utils/global.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/utils/hyprland.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/utils/hyprland.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/utils/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/utils/icons.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/utils/launcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/utils/launcher.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/utils/mpris.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/utils/mpris.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/utils/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/utils/network.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/utils/popupWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/utils/popupWindow.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/utils/swallow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/utils/swallow.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/utils/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/utils/system.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/utils/tray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/utils/tray.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/utils/weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/utils/weather.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/variables/weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/variables/weather.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/windows/bar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/windows/bar/index.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/windows/desktop/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/windows/desktop/index.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/windows/launcher/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/windows/launcher/index.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/windows/music/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/windows/music/index.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/ags/src/windows/popups/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/ags/src/windows/popups/index.ts -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/clipboard/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/clipboard/default.nix -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/default.nix -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/gammastep/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/gammastep/default.nix -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/hyprpaper/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/hyprpaper/default.nix -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/mako/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/mako/default.nix -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/swaybg/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/swaybg/default.nix -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/swayidle/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/swayidle/default.nix -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/waybar/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/waybar/default.nix -------------------------------------------------------------------------------- /homes/notashelf/services/wayland/waybar/scripts/waybar-wttr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/services/wayland/waybar/scripts/waybar-wttr.py -------------------------------------------------------------------------------- /homes/notashelf/services/x11/default.nix: -------------------------------------------------------------------------------- 1 | _: {} 2 | -------------------------------------------------------------------------------- /homes/notashelf/themes/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/themes/default.nix -------------------------------------------------------------------------------- /homes/notashelf/themes/global.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/themes/global.nix -------------------------------------------------------------------------------- /homes/notashelf/themes/gtk.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/themes/gtk.nix -------------------------------------------------------------------------------- /homes/notashelf/themes/qt.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/homes/notashelf/themes/qt.nix -------------------------------------------------------------------------------- /hosts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/README.md -------------------------------------------------------------------------------- /hosts/apollon/host.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/apollon/host.nix -------------------------------------------------------------------------------- /hosts/artemis/host.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/artemis/host.nix -------------------------------------------------------------------------------- /hosts/atlas/fs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/atlas/fs/default.nix -------------------------------------------------------------------------------- /hosts/atlas/host.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/atlas/host.nix -------------------------------------------------------------------------------- /hosts/atlas/modules/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/atlas/modules/default.nix -------------------------------------------------------------------------------- /hosts/atlas/modules/device.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/atlas/modules/device.nix -------------------------------------------------------------------------------- /hosts/atlas/modules/system.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/atlas/modules/system.nix -------------------------------------------------------------------------------- /hosts/atlas/modules/usrEnv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/atlas/modules/usrEnv.nix -------------------------------------------------------------------------------- /hosts/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/default.nix -------------------------------------------------------------------------------- /hosts/enyo/btrfs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/enyo/btrfs.nix -------------------------------------------------------------------------------- /hosts/enyo/fs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/enyo/fs/default.nix -------------------------------------------------------------------------------- /hosts/enyo/fs/external.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/enyo/fs/external.nix -------------------------------------------------------------------------------- /hosts/enyo/host.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/enyo/host.nix -------------------------------------------------------------------------------- /hosts/enyo/kernel/config/amd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/enyo/kernel/config/amd.nix -------------------------------------------------------------------------------- /hosts/enyo/kernel/config/base.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/enyo/kernel/config/base.nix -------------------------------------------------------------------------------- /hosts/enyo/kernel/config/low-latency.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/enyo/kernel/config/low-latency.nix -------------------------------------------------------------------------------- /hosts/enyo/kernel/config/security.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/enyo/kernel/config/security.nix -------------------------------------------------------------------------------- /hosts/enyo/kernel/config/unused.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/enyo/kernel/config/unused.nix -------------------------------------------------------------------------------- /hosts/enyo/kernel/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/enyo/kernel/default.nix -------------------------------------------------------------------------------- /hosts/enyo/kernel/packages/xanmod.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/enyo/kernel/packages/xanmod.nix -------------------------------------------------------------------------------- /hosts/enyo/modules/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/enyo/modules/default.nix -------------------------------------------------------------------------------- /hosts/enyo/modules/device.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/enyo/modules/device.nix -------------------------------------------------------------------------------- /hosts/enyo/modules/profiles.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/enyo/modules/profiles.nix -------------------------------------------------------------------------------- /hosts/enyo/modules/style.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/enyo/modules/style.nix -------------------------------------------------------------------------------- /hosts/enyo/modules/system.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/enyo/modules/system.nix -------------------------------------------------------------------------------- /hosts/enyo/modules/usrEnv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/enyo/modules/usrEnv.nix -------------------------------------------------------------------------------- /hosts/enyo/networking.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/enyo/networking.nix -------------------------------------------------------------------------------- /hosts/enyo/wireguard.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/enyo/wireguard.nix -------------------------------------------------------------------------------- /hosts/epimetheus/encryption.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/epimetheus/encryption.nix -------------------------------------------------------------------------------- /hosts/epimetheus/fs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/epimetheus/fs/default.nix -------------------------------------------------------------------------------- /hosts/epimetheus/host.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/epimetheus/host.nix -------------------------------------------------------------------------------- /hosts/epimetheus/modules/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/epimetheus/modules/default.nix -------------------------------------------------------------------------------- /hosts/epimetheus/modules/device.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/epimetheus/modules/device.nix -------------------------------------------------------------------------------- /hosts/epimetheus/modules/system.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/epimetheus/modules/system.nix -------------------------------------------------------------------------------- /hosts/epimetheus/modules/usrEnv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/epimetheus/modules/usrEnv.nix -------------------------------------------------------------------------------- /hosts/erebus/host.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/erebus/host.nix -------------------------------------------------------------------------------- /hosts/erebus/image/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/erebus/image/default.nix -------------------------------------------------------------------------------- /hosts/erebus/system/boot.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/erebus/system/boot.nix -------------------------------------------------------------------------------- /hosts/erebus/system/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/erebus/system/default.nix -------------------------------------------------------------------------------- /hosts/erebus/system/desktop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/erebus/system/desktop.nix -------------------------------------------------------------------------------- /hosts/erebus/system/environment.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/erebus/system/environment.nix -------------------------------------------------------------------------------- /hosts/erebus/system/fonts.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/erebus/system/fonts.nix -------------------------------------------------------------------------------- /hosts/erebus/system/login.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/erebus/system/login.nix -------------------------------------------------------------------------------- /hosts/erebus/system/networking.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/erebus/system/networking.nix -------------------------------------------------------------------------------- /hosts/erebus/system/nix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/erebus/system/nix.nix -------------------------------------------------------------------------------- /hosts/erebus/system/programs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/erebus/system/programs.nix -------------------------------------------------------------------------------- /hosts/erebus/system/security.nix: -------------------------------------------------------------------------------- 1 | { 2 | security.sudo.wheelNeedsPassword = false; 3 | } 4 | -------------------------------------------------------------------------------- /hosts/erebus/system/services.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/erebus/system/services.nix -------------------------------------------------------------------------------- /hosts/erebus/system/users.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/erebus/system/users.nix -------------------------------------------------------------------------------- /hosts/erebus/virtualization/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/erebus/virtualization/default.nix -------------------------------------------------------------------------------- /hosts/gaea/host.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/gaea/host.nix -------------------------------------------------------------------------------- /hosts/gaea/system/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/gaea/system/default.nix -------------------------------------------------------------------------------- /hosts/gaea/system/programs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/gaea/system/programs/default.nix -------------------------------------------------------------------------------- /hosts/gaea/system/programs/git.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/gaea/system/programs/git.nix -------------------------------------------------------------------------------- /hosts/gaea/system/programs/neovim/config/init.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/gaea/system/programs/neovim/config/init.vim -------------------------------------------------------------------------------- /hosts/gaea/system/programs/neovim/config/maps.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/gaea/system/programs/neovim/config/maps.vim -------------------------------------------------------------------------------- /hosts/gaea/system/programs/neovim/config/plugins.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/gaea/system/programs/neovim/config/plugins.vim -------------------------------------------------------------------------------- /hosts/gaea/system/programs/neovim/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/gaea/system/programs/neovim/default.nix -------------------------------------------------------------------------------- /hosts/helios/fs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/helios/fs/default.nix -------------------------------------------------------------------------------- /hosts/helios/fs/external.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/helios/fs/external.nix -------------------------------------------------------------------------------- /hosts/helios/host.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/helios/host.nix -------------------------------------------------------------------------------- /hosts/helios/modules/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/helios/modules/default.nix -------------------------------------------------------------------------------- /hosts/helios/modules/device.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/helios/modules/device.nix -------------------------------------------------------------------------------- /hosts/helios/modules/services.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/helios/modules/services.nix -------------------------------------------------------------------------------- /hosts/helios/modules/system.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/helios/modules/system.nix -------------------------------------------------------------------------------- /hosts/helios/modules/usrEnv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/helios/modules/usrEnv.nix -------------------------------------------------------------------------------- /hosts/helios/nftables.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/helios/nftables.nix -------------------------------------------------------------------------------- /hosts/hermes/encryption.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/hermes/encryption.nix -------------------------------------------------------------------------------- /hosts/hermes/fs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/hermes/fs/default.nix -------------------------------------------------------------------------------- /hosts/hermes/host.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/hermes/host.nix -------------------------------------------------------------------------------- /hosts/hermes/modules/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/hermes/modules/default.nix -------------------------------------------------------------------------------- /hosts/hermes/modules/device.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/hermes/modules/device.nix -------------------------------------------------------------------------------- /hosts/hermes/modules/profiles.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/hermes/modules/profiles.nix -------------------------------------------------------------------------------- /hosts/hermes/modules/style.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/hermes/modules/style.nix -------------------------------------------------------------------------------- /hosts/hermes/modules/system.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/hermes/modules/system.nix -------------------------------------------------------------------------------- /hosts/hermes/modules/usrEnv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/hermes/modules/usrEnv.nix -------------------------------------------------------------------------------- /hosts/hermes/networking.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/hermes/networking.nix -------------------------------------------------------------------------------- /hosts/icarus/fs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/icarus/fs/default.nix -------------------------------------------------------------------------------- /hosts/icarus/host.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/icarus/host.nix -------------------------------------------------------------------------------- /hosts/icarus/modules/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/icarus/modules/default.nix -------------------------------------------------------------------------------- /hosts/icarus/modules/device.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/icarus/modules/device.nix -------------------------------------------------------------------------------- /hosts/icarus/modules/system.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/icarus/modules/system.nix -------------------------------------------------------------------------------- /hosts/icarus/modules/usrEnv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/icarus/modules/usrEnv.nix -------------------------------------------------------------------------------- /hosts/leto/fs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/leto/fs/default.nix -------------------------------------------------------------------------------- /hosts/leto/host.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/leto/host.nix -------------------------------------------------------------------------------- /hosts/leto/modules/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/leto/modules/default.nix -------------------------------------------------------------------------------- /hosts/leto/modules/device.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/leto/modules/device.nix -------------------------------------------------------------------------------- /hosts/leto/modules/system.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/leto/modules/system.nix -------------------------------------------------------------------------------- /hosts/leto/modules/usrEnv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/leto/modules/usrEnv.nix -------------------------------------------------------------------------------- /hosts/prometheus/fs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/prometheus/fs/default.nix -------------------------------------------------------------------------------- /hosts/prometheus/host.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/prometheus/host.nix -------------------------------------------------------------------------------- /hosts/prometheus/modules/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/prometheus/modules/default.nix -------------------------------------------------------------------------------- /hosts/prometheus/modules/device.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/prometheus/modules/device.nix -------------------------------------------------------------------------------- /hosts/prometheus/modules/system.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/prometheus/modules/system.nix -------------------------------------------------------------------------------- /hosts/prometheus/modules/usrEnv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/prometheus/modules/usrEnv.nix -------------------------------------------------------------------------------- /hosts/selene/fs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/selene/fs/default.nix -------------------------------------------------------------------------------- /hosts/selene/fs/external.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/selene/fs/external.nix -------------------------------------------------------------------------------- /hosts/selene/host.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/selene/host.nix -------------------------------------------------------------------------------- /hosts/selene/modules/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/selene/modules/default.nix -------------------------------------------------------------------------------- /hosts/selene/modules/device.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/selene/modules/device.nix -------------------------------------------------------------------------------- /hosts/selene/modules/services.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/selene/modules/services.nix -------------------------------------------------------------------------------- /hosts/selene/modules/system.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/selene/modules/system.nix -------------------------------------------------------------------------------- /hosts/selene/modules/usrEnv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/selene/modules/usrEnv.nix -------------------------------------------------------------------------------- /hosts/selene/nftables.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/hosts/selene/nftables.nix -------------------------------------------------------------------------------- /modules/core/common/docs/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/docs/module.nix -------------------------------------------------------------------------------- /modules/core/common/secrets/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/secrets/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/README.md -------------------------------------------------------------------------------- /modules/core/common/system/activation/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/activation/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/containers/alpha/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/containers/alpha/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/containers/beta/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/containers/beta/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/containers/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/containers/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/emulation/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/emulation/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/encryption/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/encryption/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/gaming/gamemode.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/gaming/gamemode.nix -------------------------------------------------------------------------------- /modules/core/common/system/gaming/gamescope.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/gaming/gamescope.nix -------------------------------------------------------------------------------- /modules/core/common/system/gaming/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/gaming/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/gaming/steam.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/gaming/steam.nix -------------------------------------------------------------------------------- /modules/core/common/system/hardware/bluetooth.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/hardware/bluetooth.nix -------------------------------------------------------------------------------- /modules/core/common/system/hardware/cpu/amd/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/hardware/cpu/amd/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/hardware/cpu/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/hardware/cpu/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/hardware/cpu/intel/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/hardware/cpu/intel/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/hardware/gpu/amd/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/hardware/gpu/amd/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/hardware/gpu/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/hardware/gpu/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/hardware/gpu/intel/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/hardware/gpu/intel/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/hardware/gpu/nvidia/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/hardware/gpu/nvidia/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/hardware/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/hardware/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/hardware/multimedia/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/hardware/multimedia/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/hardware/multimedia/sound/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/hardware/multimedia/sound/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/hardware/multimedia/sound/realtime.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/hardware/multimedia/sound/realtime.nix -------------------------------------------------------------------------------- /modules/core/common/system/hardware/multimedia/sound/rtkit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/hardware/multimedia/sound/rtkit.nix -------------------------------------------------------------------------------- /modules/core/common/system/hardware/multimedia/video/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/hardware/multimedia/video/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/hardware/redistributable.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/hardware/redistributable.nix -------------------------------------------------------------------------------- /modules/core/common/system/hardware/tpm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/hardware/tpm.nix -------------------------------------------------------------------------------- /modules/core/common/system/hardware/yubikey.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/hardware/yubikey.nix -------------------------------------------------------------------------------- /modules/core/common/system/impermanence/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/impermanence/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/nix/builders.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/nix/builders.nix -------------------------------------------------------------------------------- /modules/core/common/system/nix/documentation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/nix/documentation.nix -------------------------------------------------------------------------------- /modules/core/common/system/nix/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/nix/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/nix/nixpkgs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/nix/nixpkgs.nix -------------------------------------------------------------------------------- /modules/core/common/system/nix/overlays/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/nix/overlays/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/nix/system.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/nix/system.nix -------------------------------------------------------------------------------- /modules/core/common/system/nix/transcend/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/nix/transcend/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/README.md -------------------------------------------------------------------------------- /modules/core/common/system/os/boot/generic.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/boot/generic.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/boot/loaders/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/boot/loaders/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/boot/loaders/grub/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/boot/loaders/grub/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/boot/loaders/none/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/boot/loaders/none/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/boot/loaders/systemd-boot/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/boot/loaders/systemd-boot/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/boot/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/boot/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/boot/plymouth.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/boot/plymouth.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/boot/secure-boot.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/boot/secure-boot.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/display/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/display/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/display/wayland/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/display/wayland/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/display/wayland/environment.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/display/wayland/environment.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/display/wayland/services.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/display/wayland/services.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/display/wayland/wms/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/display/wayland/wms/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/display/wayland/xdg-portals.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/display/wayland/xdg-portals.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/display/wayland/xwayland.nix: -------------------------------------------------------------------------------- 1 | {programs.xwayland.enable = true;} 2 | -------------------------------------------------------------------------------- /modules/core/common/system/os/display/xorg/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/display/xorg/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/display/xorg/environment.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/display/xorg/environment.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/display/xorg/xdg-portals.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/display/xorg/xdg-portals.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/display/xorg/xserver.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/display/xorg/xserver.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/environment/aliases.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/environment/aliases.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/environment/etc.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/environment/etc.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/environment/locale.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/environment/locale.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/environment/misc.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/environment/misc.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/environment/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/environment/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/environment/packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/environment/packages.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/environment/paths.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/environment/paths.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/environment/variables.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/environment/variables.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/fs/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/fs/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/misc/console.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/misc/console.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/misc/crash.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/misc/crash.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/misc/journald.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/misc/journald.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/misc/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/misc/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/misc/xdg-portals.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/misc/xdg-portals.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/networking/blocker.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/networking/blocker.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/networking/firewall/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/networking/firewall/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/networking/firewall/fail2ban.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/networking/firewall/fail2ban.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/networking/firewall/tarpit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/networking/firewall/tarpit.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/networking/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/networking/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/networking/network-manager.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/networking/network-manager.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/networking/optimize.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/networking/optimize.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/networking/resolved.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/networking/resolved.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/networking/ssh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/networking/ssh.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/networking/tailscale/autoconnect.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/networking/tailscale/autoconnect.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/networking/tailscale/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/networking/tailscale/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/networking/tcpcrypt.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/networking/tcpcrypt.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/networking/wireless.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/networking/wireless.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/programs/bash.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/programs/bash.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/programs/direnv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/programs/direnv.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/programs/git.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/programs/git.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/programs/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/programs/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/programs/nano.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/programs/nano.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/programs/zsh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/programs/zsh.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/services/fwupd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/services/fwupd.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/services/getty.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/services/getty.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/services/logrotate.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/services/logrotate.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/services/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/services/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/services/ntpd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/services/ntpd.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/services/systemd/brightnessd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/services/systemd/brightnessd.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/services/systemd/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/services/systemd/default.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/services/systemd/oomd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/services/systemd/oomd.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/services/systemd/timesyncd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/services/systemd/timesyncd.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/services/thermald.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/services/thermald.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/services/zram.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/services/zram.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/users/builder.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/users/builder.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/users/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/users/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/users/notashelf.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/users/notashelf.nix -------------------------------------------------------------------------------- /modules/core/common/system/os/users/root.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/os/users/root.nix -------------------------------------------------------------------------------- /modules/core/common/system/security/apparmor.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/security/apparmor.nix -------------------------------------------------------------------------------- /modules/core/common/system/security/auditd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/security/auditd.nix -------------------------------------------------------------------------------- /modules/core/common/system/security/clamav.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/security/clamav.nix -------------------------------------------------------------------------------- /modules/core/common/system/security/fprint.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/security/fprint.nix -------------------------------------------------------------------------------- /modules/core/common/system/security/impurity-tracker.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/security/impurity-tracker.nix -------------------------------------------------------------------------------- /modules/core/common/system/security/kernel.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/security/kernel.nix -------------------------------------------------------------------------------- /modules/core/common/system/security/memalloc.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/security/memalloc.nix -------------------------------------------------------------------------------- /modules/core/common/system/security/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/security/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/security/pam.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/security/pam.nix -------------------------------------------------------------------------------- /modules/core/common/system/security/pki.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/security/pki.nix -------------------------------------------------------------------------------- /modules/core/common/system/security/polkit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/security/polkit.nix -------------------------------------------------------------------------------- /modules/core/common/system/security/selinux.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/security/selinux.nix -------------------------------------------------------------------------------- /modules/core/common/system/security/sudo.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/security/sudo.nix -------------------------------------------------------------------------------- /modules/core/common/system/security/usbguard.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/security/usbguard.nix -------------------------------------------------------------------------------- /modules/core/common/system/security/virtualization.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/security/virtualization.nix -------------------------------------------------------------------------------- /modules/core/common/system/switch/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/switch/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/virtualization/distrobox.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/virtualization/distrobox.nix -------------------------------------------------------------------------------- /modules/core/common/system/virtualization/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/virtualization/module.nix -------------------------------------------------------------------------------- /modules/core/common/system/virtualization/podman.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/virtualization/podman.nix -------------------------------------------------------------------------------- /modules/core/common/system/virtualization/qemu.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/virtualization/qemu.nix -------------------------------------------------------------------------------- /modules/core/common/system/virtualization/waydroid.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/common/system/virtualization/waydroid.nix -------------------------------------------------------------------------------- /modules/core/profiles/gaming/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/profiles/gaming/module.nix -------------------------------------------------------------------------------- /modules/core/profiles/workstation/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/profiles/workstation/module.nix -------------------------------------------------------------------------------- /modules/core/roles/graphical/system/environment.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/graphical/system/environment.nix -------------------------------------------------------------------------------- /modules/core/roles/graphical/system/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/graphical/system/module.nix -------------------------------------------------------------------------------- /modules/core/roles/graphical/system/security/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/graphical/system/security/default.nix -------------------------------------------------------------------------------- /modules/core/roles/graphical/system/security/polkit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/graphical/system/security/polkit.nix -------------------------------------------------------------------------------- /modules/core/roles/graphical/system/services/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/graphical/system/services/default.nix -------------------------------------------------------------------------------- /modules/core/roles/graphical/system/services/login/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/graphical/system/services/login/default.nix -------------------------------------------------------------------------------- /modules/core/roles/graphical/system/services/login/greetd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/graphical/system/services/login/greetd.nix -------------------------------------------------------------------------------- /modules/core/roles/graphical/system/services/login/logind.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/graphical/system/services/login/logind.nix -------------------------------------------------------------------------------- /modules/core/roles/graphical/system/services/login/pam.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/graphical/system/services/login/pam.nix -------------------------------------------------------------------------------- /modules/core/roles/graphical/system/services/login/session.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/graphical/system/services/login/session.nix -------------------------------------------------------------------------------- /modules/core/roles/graphical/system/services/xserver.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/graphical/system/services/xserver.nix -------------------------------------------------------------------------------- /modules/core/roles/headless/system/documentation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/headless/system/documentation.nix -------------------------------------------------------------------------------- /modules/core/roles/headless/system/environment.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/headless/system/environment.nix -------------------------------------------------------------------------------- /modules/core/roles/headless/system/fonts.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/headless/system/fonts.nix -------------------------------------------------------------------------------- /modules/core/roles/headless/system/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/headless/system/module.nix -------------------------------------------------------------------------------- /modules/core/roles/headless/system/nix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/headless/system/nix.nix -------------------------------------------------------------------------------- /modules/core/roles/headless/system/programs.nix: -------------------------------------------------------------------------------- 1 | { 2 | programs.command-not-found.enable = false; 3 | } 4 | -------------------------------------------------------------------------------- /modules/core/roles/headless/system/services.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/headless/system/services.nix -------------------------------------------------------------------------------- /modules/core/roles/headless/system/systemd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/headless/system/systemd.nix -------------------------------------------------------------------------------- /modules/core/roles/headless/system/users.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/headless/system/users.nix -------------------------------------------------------------------------------- /modules/core/roles/headless/system/xdg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/headless/system/xdg.nix -------------------------------------------------------------------------------- /modules/core/roles/iso/image/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/iso/image/module.nix -------------------------------------------------------------------------------- /modules/core/roles/iso/system/boot.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/iso/system/boot.nix -------------------------------------------------------------------------------- /modules/core/roles/iso/system/environment.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/iso/system/environment.nix -------------------------------------------------------------------------------- /modules/core/roles/iso/system/hardware.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/iso/system/hardware.nix -------------------------------------------------------------------------------- /modules/core/roles/iso/system/misc/console.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/iso/system/misc/console.nix -------------------------------------------------------------------------------- /modules/core/roles/iso/system/misc/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/iso/system/misc/default.nix -------------------------------------------------------------------------------- /modules/core/roles/iso/system/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/iso/system/module.nix -------------------------------------------------------------------------------- /modules/core/roles/iso/system/networking.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/iso/system/networking.nix -------------------------------------------------------------------------------- /modules/core/roles/iso/system/nix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/iso/system/nix.nix -------------------------------------------------------------------------------- /modules/core/roles/iso/system/security.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/iso/system/security.nix -------------------------------------------------------------------------------- /modules/core/roles/iso/system/services/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/iso/system/services/default.nix -------------------------------------------------------------------------------- /modules/core/roles/iso/system/services/logrotate.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/iso/system/services/logrotate.nix -------------------------------------------------------------------------------- /modules/core/roles/iso/system/services/openssh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/iso/system/services/openssh.nix -------------------------------------------------------------------------------- /modules/core/roles/iso/system/users.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/iso/system/users.nix -------------------------------------------------------------------------------- /modules/core/roles/laptop/system/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/laptop/system/module.nix -------------------------------------------------------------------------------- /modules/core/roles/laptop/system/power/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/laptop/system/power/default.nix -------------------------------------------------------------------------------- /modules/core/roles/laptop/system/power/monitors/auto-cpufreq.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/laptop/system/power/monitors/auto-cpufreq.nix -------------------------------------------------------------------------------- /modules/core/roles/laptop/system/power/monitors/power-profiles.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/laptop/system/power/monitors/power-profiles.nix -------------------------------------------------------------------------------- /modules/core/roles/laptop/system/power/monitors/tlp.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/laptop/system/power/monitors/tlp.nix -------------------------------------------------------------------------------- /modules/core/roles/laptop/system/touchpad.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/laptop/system/touchpad.nix -------------------------------------------------------------------------------- /modules/core/roles/microvm/system/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/microvm/system/default.nix -------------------------------------------------------------------------------- /modules/core/roles/microvm/system/nix/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/microvm/system/nix/default.nix -------------------------------------------------------------------------------- /modules/core/roles/microvm/system/os/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/microvm/system/os/default.nix -------------------------------------------------------------------------------- /modules/core/roles/microvm/system/os/environment.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/microvm/system/os/environment.nix -------------------------------------------------------------------------------- /modules/core/roles/microvm/system/os/networking.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/microvm/system/os/networking.nix -------------------------------------------------------------------------------- /modules/core/roles/microvm/system/os/programs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/microvm/system/os/programs/default.nix -------------------------------------------------------------------------------- /modules/core/roles/microvm/system/os/programs/git.nix: -------------------------------------------------------------------------------- 1 | {programs.git.enable = true;} 2 | -------------------------------------------------------------------------------- /modules/core/roles/microvm/system/os/programs/neovim.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/microvm/system/os/programs/neovim.nix -------------------------------------------------------------------------------- /modules/core/roles/microvm/system/os/programs/tmux.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/microvm/system/os/programs/tmux.nix -------------------------------------------------------------------------------- /modules/core/roles/microvm/system/os/programs/zsh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/microvm/system/os/programs/zsh.nix -------------------------------------------------------------------------------- /modules/core/roles/microvm/system/os/users/admin.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/microvm/system/os/users/admin.nix -------------------------------------------------------------------------------- /modules/core/roles/microvm/system/os/users/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/microvm/system/os/users/default.nix -------------------------------------------------------------------------------- /modules/core/roles/microvm/system/security/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/microvm/system/security/default.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/module.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/bincache/atticd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/bincache/atticd.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/bincache/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/bincache/default.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/bincache/harmonia.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/bincache/harmonia.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/bincache/nix-serve.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/bincache/nix-serve.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/databases/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/databases/default.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/databases/garage.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/databases/garage.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/databases/mongodb.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/databases/mongodb.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/databases/mysql.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/databases/mysql.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/databases/postgresql.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/databases/postgresql.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/databases/redis.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/databases/redis.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/default.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/elasticsearch.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/elasticsearch.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/forgejo-runner.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/forgejo-runner.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/forgejo.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/forgejo.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/jellyfin.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/jellyfin.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/kanidm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/kanidm.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/mailserver.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/mailserver.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/miniflux.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/miniflux.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/mkm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/mkm.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/monitoring/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/monitoring/default.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/monitoring/loki.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/monitoring/loki.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/monitoring/prometheus.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/monitoring/prometheus.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/networking/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/networking/default.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/nextcloud.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/nextcloud.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/nginx/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/nginx/default.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/nginx/static/gpg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/nginx/static/gpg.txt -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/nginx/static/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/nginx/static/header.txt -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/nginx/static/root.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/nginx/static/root.txt -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/reposilite.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/reposilite.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/searxng.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/searxng.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/social/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/social/default.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/social/mastodon.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/social/mastodon.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/social/matrix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/social/matrix.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/tor.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/tor.nix -------------------------------------------------------------------------------- /modules/core/roles/server/system/services/vaultwarden.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/server/system/services/vaultwarden.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/fonts.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/fonts.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/misc.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/misc.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/module.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/programs/ccache.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/programs/ccache.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/programs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/programs/default.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/programs/flatpak.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/programs/flatpak.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/programs/java.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/programs/java.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/programs/misc.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/programs/misc.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/programs/nh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/programs/nh.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/programs/wine.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/programs/wine.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/programs/xdg-ninja.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/programs/xdg-ninja.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/security/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/security/default.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/security/firejail.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/security/firejail.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/security/tor.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/security/tor.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/services/adb.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/services/adb.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/services/dbus.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/services/dbus.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/services/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/services/default.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/services/earlyoom.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/services/earlyoom.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/services/gnome.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/services/gnome.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/services/location.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/services/location.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/services/misc.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/services/misc.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/services/printing.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/services/printing.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/services/runners.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/services/runners.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/services/systemd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/services/systemd.nix -------------------------------------------------------------------------------- /modules/core/roles/workstation/system/services/zswap.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/core/roles/workstation/system/services/zswap.nix -------------------------------------------------------------------------------- /modules/extra/exported/onedev/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/extra/exported/onedev/default.nix -------------------------------------------------------------------------------- /modules/extra/shared/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/extra/shared/default.nix -------------------------------------------------------------------------------- /modules/extra/shared/home-manager/default.nix: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /modules/extra/shared/home-manager/gtklock/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/extra/shared/home-manager/gtklock/default.nix -------------------------------------------------------------------------------- /modules/extra/shared/home-manager/transience/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/extra/shared/home-manager/transience/default.nix -------------------------------------------------------------------------------- /modules/extra/shared/home-manager/vifm/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/extra/shared/home-manager/vifm/default.nix -------------------------------------------------------------------------------- /modules/extra/shared/home-manager/xplr/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/extra/shared/home-manager/xplr/default.nix -------------------------------------------------------------------------------- /modules/extra/shared/nixos/comma/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/extra/shared/nixos/comma/default.nix -------------------------------------------------------------------------------- /modules/extra/shared/nixos/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/extra/shared/nixos/default.nix -------------------------------------------------------------------------------- /modules/extra/shared/nixos/reposilite/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/extra/shared/nixos/reposilite/default.nix -------------------------------------------------------------------------------- /modules/extra/shared/nixos/wakapi/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/extra/shared/nixos/wakapi/default.nix -------------------------------------------------------------------------------- /modules/options/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/README.md -------------------------------------------------------------------------------- /modules/options/device/capabilities.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/device/capabilities.nix -------------------------------------------------------------------------------- /modules/options/device/hardware.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/device/hardware.nix -------------------------------------------------------------------------------- /modules/options/device/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/device/module.nix -------------------------------------------------------------------------------- /modules/options/docs/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/docs/module.nix -------------------------------------------------------------------------------- /modules/options/internal/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/internal/module.nix -------------------------------------------------------------------------------- /modules/options/internal/removed.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/internal/removed.nix -------------------------------------------------------------------------------- /modules/options/internal/renamed.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/internal/renamed.nix -------------------------------------------------------------------------------- /modules/options/meta/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/meta/module.nix -------------------------------------------------------------------------------- /modules/options/profiles/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/profiles/module.nix -------------------------------------------------------------------------------- /modules/options/style/colors.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/style/colors.nix -------------------------------------------------------------------------------- /modules/options/style/gtk.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/style/gtk.nix -------------------------------------------------------------------------------- /modules/options/style/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/style/module.nix -------------------------------------------------------------------------------- /modules/options/style/palettes/angel-light.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/style/palettes/angel-light.nix -------------------------------------------------------------------------------- /modules/options/style/palettes/black-metal.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/style/palettes/black-metal.nix -------------------------------------------------------------------------------- /modules/options/style/palettes/carbon-dark.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/style/palettes/carbon-dark.nix -------------------------------------------------------------------------------- /modules/options/style/palettes/catppuccin-frappe.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/style/palettes/catppuccin-frappe.nix -------------------------------------------------------------------------------- /modules/options/style/palettes/catppuccin-macchiato.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/style/palettes/catppuccin-macchiato.nix -------------------------------------------------------------------------------- /modules/options/style/palettes/catppuccin-mocha.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/style/palettes/catppuccin-mocha.nix -------------------------------------------------------------------------------- /modules/options/style/palettes/decay-dark.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/style/palettes/decay-dark.nix -------------------------------------------------------------------------------- /modules/options/style/palettes/default-dark.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/style/palettes/default-dark.nix -------------------------------------------------------------------------------- /modules/options/style/palettes/monochrome.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/style/palettes/monochrome.nix -------------------------------------------------------------------------------- /modules/options/style/palettes/noelle.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/style/palettes/noelle.nix -------------------------------------------------------------------------------- /modules/options/style/palettes/oxocarbon-dark.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/style/palettes/oxocarbon-dark.nix -------------------------------------------------------------------------------- /modules/options/style/palettes/tokyo-night.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/style/palettes/tokyo-night.nix -------------------------------------------------------------------------------- /modules/options/style/palettes/varda-theme.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/style/palettes/varda-theme.nix -------------------------------------------------------------------------------- /modules/options/style/qt.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/style/qt.nix -------------------------------------------------------------------------------- /modules/options/system/activation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/activation.nix -------------------------------------------------------------------------------- /modules/options/system/boot.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/boot.nix -------------------------------------------------------------------------------- /modules/options/system/containers.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/containers.nix -------------------------------------------------------------------------------- /modules/options/system/emulation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/emulation.nix -------------------------------------------------------------------------------- /modules/options/system/encryption.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/encryption.nix -------------------------------------------------------------------------------- /modules/options/system/fs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/fs.nix -------------------------------------------------------------------------------- /modules/options/system/impermanence.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/impermanence.nix -------------------------------------------------------------------------------- /modules/options/system/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/module.nix -------------------------------------------------------------------------------- /modules/options/system/networking/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/networking/default.nix -------------------------------------------------------------------------------- /modules/options/system/networking/nftables.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/networking/nftables.nix -------------------------------------------------------------------------------- /modules/options/system/networking/tailscale.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/networking/tailscale.nix -------------------------------------------------------------------------------- /modules/options/system/programs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/programs/default.nix -------------------------------------------------------------------------------- /modules/options/system/programs/gaming.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/programs/gaming.nix -------------------------------------------------------------------------------- /modules/options/system/security.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/security.nix -------------------------------------------------------------------------------- /modules/options/system/services/bincache.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/services/bincache.nix -------------------------------------------------------------------------------- /modules/options/system/services/databases.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/services/databases.nix -------------------------------------------------------------------------------- /modules/options/system/services/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/services/default.nix -------------------------------------------------------------------------------- /modules/options/system/services/monitoring.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/services/monitoring.nix -------------------------------------------------------------------------------- /modules/options/system/services/networking.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/services/networking.nix -------------------------------------------------------------------------------- /modules/options/system/services/social.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/services/social.nix -------------------------------------------------------------------------------- /modules/options/system/virtualization.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/system/virtualization.nix -------------------------------------------------------------------------------- /modules/options/usrEnv/brightness.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/usrEnv/brightness.nix -------------------------------------------------------------------------------- /modules/options/usrEnv/desktop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/usrEnv/desktop.nix -------------------------------------------------------------------------------- /modules/options/usrEnv/module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/usrEnv/module.nix -------------------------------------------------------------------------------- /modules/options/usrEnv/programs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/usrEnv/programs/default.nix -------------------------------------------------------------------------------- /modules/options/usrEnv/programs/gaming.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/usrEnv/programs/gaming.nix -------------------------------------------------------------------------------- /modules/options/usrEnv/programs/launchers.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/usrEnv/programs/launchers.nix -------------------------------------------------------------------------------- /modules/options/usrEnv/programs/lockers.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/usrEnv/programs/lockers.nix -------------------------------------------------------------------------------- /modules/options/usrEnv/programs/media.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/usrEnv/programs/media.nix -------------------------------------------------------------------------------- /modules/options/usrEnv/services/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/usrEnv/services/default.nix -------------------------------------------------------------------------------- /modules/options/usrEnv/services/media.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/modules/options/usrEnv/services/media.nix -------------------------------------------------------------------------------- /parts/apps/build-all-hosts/app.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/apps/build-all-hosts/app.nix -------------------------------------------------------------------------------- /parts/apps/check-restart/app.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/apps/check-restart/app.nix -------------------------------------------------------------------------------- /parts/apps/check-store-errors/app.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/apps/check-store-errors/app.nix -------------------------------------------------------------------------------- /parts/apps/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/apps/default.nix -------------------------------------------------------------------------------- /parts/apps/mount-local-disks/app.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/apps/mount-local-disks/app.nix -------------------------------------------------------------------------------- /parts/apps/prefetch-url-sha256/app.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/apps/prefetch-url-sha256/app.nix -------------------------------------------------------------------------------- /parts/apps/upgrade-postgresql/app.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/apps/upgrade-postgresql/app.nix -------------------------------------------------------------------------------- /parts/args.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/args.nix -------------------------------------------------------------------------------- /parts/checks/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/checks/default.nix -------------------------------------------------------------------------------- /parts/ci.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/ci.nix -------------------------------------------------------------------------------- /parts/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/default.nix -------------------------------------------------------------------------------- /parts/deployments.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/deployments.nix -------------------------------------------------------------------------------- /parts/fmt.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/fmt.nix -------------------------------------------------------------------------------- /parts/hydra.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/hydra.nix -------------------------------------------------------------------------------- /parts/iso-images.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/iso-images.nix -------------------------------------------------------------------------------- /parts/keys.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/keys.nix -------------------------------------------------------------------------------- /parts/lib/aliases.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/lib/aliases.nix -------------------------------------------------------------------------------- /parts/lib/builders.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/lib/builders.nix -------------------------------------------------------------------------------- /parts/lib/ci.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/lib/ci.nix -------------------------------------------------------------------------------- /parts/lib/conversion.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/lib/conversion.nix -------------------------------------------------------------------------------- /parts/lib/dag.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/lib/dag.nix -------------------------------------------------------------------------------- /parts/lib/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/lib/default.nix -------------------------------------------------------------------------------- /parts/lib/deploy.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/lib/deploy.nix -------------------------------------------------------------------------------- /parts/lib/firewall.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/lib/firewall.nix -------------------------------------------------------------------------------- /parts/lib/fs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/lib/fs.nix -------------------------------------------------------------------------------- /parts/lib/hardware.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/lib/hardware.nix -------------------------------------------------------------------------------- /parts/lib/misc.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/lib/misc.nix -------------------------------------------------------------------------------- /parts/lib/modules.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/lib/modules.nix -------------------------------------------------------------------------------- /parts/lib/namespacing.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/lib/namespacing.nix -------------------------------------------------------------------------------- /parts/lib/networking.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/lib/networking.nix -------------------------------------------------------------------------------- /parts/lib/secrets.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/lib/secrets.nix -------------------------------------------------------------------------------- /parts/lib/ssh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/lib/ssh.nix -------------------------------------------------------------------------------- /parts/lib/systemd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/lib/systemd.nix -------------------------------------------------------------------------------- /parts/lib/themes.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/lib/themes.nix -------------------------------------------------------------------------------- /parts/lib/validators.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/lib/validators.nix -------------------------------------------------------------------------------- /parts/lib/xdg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/lib/xdg.nix -------------------------------------------------------------------------------- /parts/modules/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/modules/default.nix -------------------------------------------------------------------------------- /parts/npins/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/npins/default.nix -------------------------------------------------------------------------------- /parts/npins/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/npins/sources.json -------------------------------------------------------------------------------- /parts/pkgs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pkgs/default.nix -------------------------------------------------------------------------------- /parts/pkgs/packages/nicksfetch/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pkgs/packages/nicksfetch/package.nix -------------------------------------------------------------------------------- /parts/pkgs/packages/nicksfetch/patches/0001-nicksfetch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pkgs/packages/nicksfetch/patches/0001-nicksfetch.patch -------------------------------------------------------------------------------- /parts/pkgs/packages/plymouth-themes/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pkgs/packages/plymouth-themes/package.nix -------------------------------------------------------------------------------- /parts/pkgs/packages/schizofox-startpage/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pkgs/packages/schizofox-startpage/package.nix -------------------------------------------------------------------------------- /parts/pkgs/packages/schizofox-startpage/src/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pkgs/packages/schizofox-startpage/src/.eslintrc.js -------------------------------------------------------------------------------- /parts/pkgs/packages/schizofox-startpage/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pkgs/packages/schizofox-startpage/src/README.md -------------------------------------------------------------------------------- /parts/pkgs/packages/schizofox-startpage/src/assets/blossom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pkgs/packages/schizofox-startpage/src/assets/blossom.png -------------------------------------------------------------------------------- /parts/pkgs/packages/schizofox-startpage/src/assets/desperation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pkgs/packages/schizofox-startpage/src/assets/desperation.png -------------------------------------------------------------------------------- /parts/pkgs/packages/schizofox-startpage/src/assets/flowerprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pkgs/packages/schizofox-startpage/src/assets/flowerprint.png -------------------------------------------------------------------------------- /parts/pkgs/packages/schizofox-startpage/src/assets/flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pkgs/packages/schizofox-startpage/src/assets/flowers.png -------------------------------------------------------------------------------- /parts/pkgs/packages/schizofox-startpage/src/assets/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pkgs/packages/schizofox-startpage/src/assets/logs.png -------------------------------------------------------------------------------- /parts/pkgs/packages/schizofox-startpage/src/assets/malachite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pkgs/packages/schizofox-startpage/src/assets/malachite.png -------------------------------------------------------------------------------- /parts/pkgs/packages/schizofox-startpage/src/assets/planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pkgs/packages/schizofox-startpage/src/assets/planet.png -------------------------------------------------------------------------------- /parts/pkgs/packages/schizofox-startpage/src/assets/sway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pkgs/packages/schizofox-startpage/src/assets/sway.png -------------------------------------------------------------------------------- /parts/pkgs/packages/schizofox-startpage/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pkgs/packages/schizofox-startpage/src/index.html -------------------------------------------------------------------------------- /parts/pkgs/packages/schizofox-startpage/src/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pkgs/packages/schizofox-startpage/src/search.js -------------------------------------------------------------------------------- /parts/pkgs/packages/schizofox-startpage/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pkgs/packages/schizofox-startpage/src/style.css -------------------------------------------------------------------------------- /parts/pre-commit/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pre-commit/default.nix -------------------------------------------------------------------------------- /parts/pre-commit/hooks/exiftool.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pre-commit/hooks/exiftool.nix -------------------------------------------------------------------------------- /parts/pre-commit/hooks/git-cliff.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pre-commit/hooks/git-cliff.nix -------------------------------------------------------------------------------- /parts/pre-commit/hooks/prettier.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pre-commit/hooks/prettier.nix -------------------------------------------------------------------------------- /parts/pre-commit/hooks/typos.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pre-commit/hooks/typos.nix -------------------------------------------------------------------------------- /parts/pre-commit/utils.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/pre-commit/utils.nix -------------------------------------------------------------------------------- /parts/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/shell.nix -------------------------------------------------------------------------------- /parts/templates/c/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/c/.editorconfig -------------------------------------------------------------------------------- /parts/templates/c/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/c/.gitignore -------------------------------------------------------------------------------- /parts/templates/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/c/Makefile -------------------------------------------------------------------------------- /parts/templates/c/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/c/default.nix -------------------------------------------------------------------------------- /parts/templates/c/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/c/flake.nix -------------------------------------------------------------------------------- /parts/templates/c/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/c/shell.nix -------------------------------------------------------------------------------- /parts/templates/c/src/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | std::cout << "Hello, World!"; 5 | 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /parts/templates/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/default.nix -------------------------------------------------------------------------------- /parts/templates/go/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /parts/templates/go/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/go/cmd/main.go -------------------------------------------------------------------------------- /parts/templates/go/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/go/default.nix -------------------------------------------------------------------------------- /parts/templates/go/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/go/flake.nix -------------------------------------------------------------------------------- /parts/templates/go/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/go/shell.nix -------------------------------------------------------------------------------- /parts/templates/node/.gitignore: -------------------------------------------------------------------------------- 1 | result 2 | build 3 | node_modules 4 | -------------------------------------------------------------------------------- /parts/templates/node/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/node/default.nix -------------------------------------------------------------------------------- /parts/templates/node/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/node/flake.nix -------------------------------------------------------------------------------- /parts/templates/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/node/package.json -------------------------------------------------------------------------------- /parts/templates/node/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/node/shell.nix -------------------------------------------------------------------------------- /parts/templates/node/src/index.ts: -------------------------------------------------------------------------------- 1 | console.log("Hello world!"); 2 | -------------------------------------------------------------------------------- /parts/templates/node/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/node/tsconfig.json -------------------------------------------------------------------------------- /parts/templates/python/.envrc: -------------------------------------------------------------------------------- 1 | use flake . --builders "" 2 | -------------------------------------------------------------------------------- /parts/templates/python/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/python/default.nix -------------------------------------------------------------------------------- /parts/templates/python/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/python/flake.nix -------------------------------------------------------------------------------- /parts/templates/python/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/python/shell.nix -------------------------------------------------------------------------------- /parts/templates/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/rust/Cargo.toml -------------------------------------------------------------------------------- /parts/templates/rust/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/rust/default.nix -------------------------------------------------------------------------------- /parts/templates/rust/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/rust/flake.nix -------------------------------------------------------------------------------- /parts/templates/rust/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/parts/templates/rust/shell.nix -------------------------------------------------------------------------------- /parts/templates/rust/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/shell.nix -------------------------------------------------------------------------------- /statix.toml: -------------------------------------------------------------------------------- 1 | ignore = ['.direnv', 'flake/npins'] 2 | -------------------------------------------------------------------------------- /stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotAShelf/nyx/HEAD/stylua.toml --------------------------------------------------------------------------------