diff options
Diffstat (limited to 'nixos/modules')
| -rw-r--r-- | nixos/modules/features/cli-tools/default.nix | 3 | ||||
| -rw-r--r-- | nixos/modules/features/desktop-apps/default.nix | 2 | ||||
| -rw-r--r-- | nixos/modules/features/editors/default.nix | 2 | ||||
| -rw-r--r-- | nixos/modules/features/fonts/default.nix | 1 | ||||
| -rw-r--r-- | nixos/modules/features/gst-codecs/default.nix | 2 | ||||
| -rw-r--r-- | nixos/modules/features/niri/default.nix | 2 | ||||
| -rw-r--r-- | nixos/modules/features/terminals/default.nix | 4 | ||||
| -rw-r--r-- | nixos/modules/system/hardware/default.nix | 2 | ||||
| -rw-r--r-- | nixos/modules/system/users/default.nix | 2 |
9 files changed, 13 insertions, 7 deletions
diff --git a/nixos/modules/features/cli-tools/default.nix b/nixos/modules/features/cli-tools/default.nix index cdd0439..bc80ca9 100644 --- a/nixos/modules/features/cli-tools/default.nix +++ b/nixos/modules/features/cli-tools/default.nix @@ -14,8 +14,9 @@ cryptsetup yt-dlp caligula + fetch ]; # Cross-shell prompt; its config lives in the dotfiles repo, not NixOS. programs.starship.enable = true; -}
\ No newline at end of file +} diff --git a/nixos/modules/features/desktop-apps/default.nix b/nixos/modules/features/desktop-apps/default.nix index d1db1d5..175938e 100644 --- a/nixos/modules/features/desktop-apps/default.nix +++ b/nixos/modules/features/desktop-apps/default.nix @@ -21,7 +21,7 @@ pkgs.qbittorrent evince pkgs.masterpdfeditor - mullvad-browser librewolf + chromium ]; } diff --git a/nixos/modules/features/editors/default.nix b/nixos/modules/features/editors/default.nix index 7f1dd9a..5cec5da 100644 --- a/nixos/modules/features/editors/default.nix +++ b/nixos/modules/features/editors/default.nix @@ -9,4 +9,4 @@ # IME input method integration for the Vim/Neovim ecosystem. pkgs.vimPlugins.im-select-nvim ]; -}
\ No newline at end of file +} diff --git a/nixos/modules/features/fonts/default.nix b/nixos/modules/features/fonts/default.nix index 7f2c371..3506c32 100644 --- a/nixos/modules/features/fonts/default.nix +++ b/nixos/modules/features/fonts/default.nix @@ -13,5 +13,6 @@ noto-fonts-color-emoji adwaita-fonts cozette + roboto ]; } diff --git a/nixos/modules/features/gst-codecs/default.nix b/nixos/modules/features/gst-codecs/default.nix index eac6777..c3decb8 100644 --- a/nixos/modules/features/gst-codecs/default.nix +++ b/nixos/modules/features/gst-codecs/default.nix @@ -9,4 +9,4 @@ gst_all_1.gst-plugins-good gst_all_1.gst-plugins-ugly ]; -}
\ No newline at end of file +} diff --git a/nixos/modules/features/niri/default.nix b/nixos/modules/features/niri/default.nix index 8f48be7..75a7a31 100644 --- a/nixos/modules/features/niri/default.nix +++ b/nixos/modules/features/niri/default.nix @@ -15,4 +15,4 @@ # Shows polkit authentication dialogs as a layer-shell popup. hyprpolkitagent ]; -}
\ No newline at end of file +} diff --git a/nixos/modules/features/terminals/default.nix b/nixos/modules/features/terminals/default.nix index 22c5662..ec7ead3 100644 --- a/nixos/modules/features/terminals/default.nix +++ b/nixos/modules/features/terminals/default.nix @@ -1,8 +1,10 @@ { pkgs, ... }: { + programs.foot.settings.main.shell = "tmux"; environment.systemPackages = with pkgs; [ foot ghostty + tmux ]; -}
\ No newline at end of file +} diff --git a/nixos/modules/system/hardware/default.nix b/nixos/modules/system/hardware/default.nix index b3f1bbb..d81b60e 100644 --- a/nixos/modules/system/hardware/default.nix +++ b/nixos/modules/system/hardware/default.nix @@ -17,4 +17,4 @@ # The actual NVIDIA driver is configured in modules/features/nvidia; this # just tells the X server legacy path to prefer the nvidia driver name. services.xserver.videoDrivers = [ "nvidia" ]; -}
\ No newline at end of file +} diff --git a/nixos/modules/system/users/default.nix b/nixos/modules/system/users/default.nix index 6eafd7c..d795a64 100644 --- a/nixos/modules/system/users/default.nix +++ b/nixos/modules/system/users/default.nix @@ -41,6 +41,8 @@ shellAliases = { ls = "eza -al --icons=auto"; ll = "eza -al --icons=auto"; + fs = "fastfetch"; + hf = "hyfetch"; sudo = "doas"; open = "xdg-open"; }; |
