diff --git a/README.md b/README.md index 1b2f149..44a9be2 100644 --- a/README.md +++ b/README.md @@ -1,23 +1,23 @@ # Nixconf -Here lie all my configurations for my NixOS machines. I have begun migrating my laptop but haven't -quite finished doing so. +![Some screenshots of the config in use on my desktop](assets/screenshots/pan.webp) + +## Applications + +- Text Editor: [Zed](https://zed.dev) +- Browser: [Librewolf](https://librewolf.net) +- Terminal Emulator: [Kitty](https://sw.kovidgoyal.net/kitty/) +- Music Player: [Amberol](https://apps.gnome.org/Amberol/) + +## Theme + +Currently just using [Catppuccin](https://catppuccin.com/) wherever possible. I'm using +[Stylus](https://addons.mozilla.org/en-US/firefox/addon/styl-us/) and the +[userstyles](https://userstyles.catppuccin.com/getting-started/introduction/) to style some web +applications and sites like GitHub or YouTube. Bootstrapped and inspired by [Vimjoyer](https://youtu.be/aNgujRXDTdE). -## Desktop - -This config uses Niri with the great Noctalia shell. The advantage of such a shell is that it -greatly reduces the amount I need to concern myself with making sure that colors are consistent or -whatever other things Linux people care about. It also gives me a chance to try out Niri without -without needing to spend an unemployable amount of time configuring things. - -## Laptop - -This config uses Hyprland with Waybar. Waybar is almost entirely stock with very few changes. I -have configured things to be rather boxy and simple despite it being hyprland. I haven't bothered -with customizing animations and whatnot. Nearly everything is stock. Keeping it simple. - ## Wallpapers I made the Augustine wallpaper. Feel free to take it. The rest are all yoinked from various GitHub diff --git a/assets/screenshots/Fastfetch.png b/assets/screenshots/Fastfetch.png new file mode 100644 index 0000000..f63179d Binary files /dev/null and b/assets/screenshots/Fastfetch.png differ diff --git a/assets/screenshots/OpenCode.png b/assets/screenshots/OpenCode.png new file mode 100644 index 0000000..5a362ea Binary files /dev/null and b/assets/screenshots/OpenCode.png differ diff --git a/assets/screenshots/Settings.png b/assets/screenshots/Settings.png new file mode 100644 index 0000000..2efab93 Binary files /dev/null and b/assets/screenshots/Settings.png differ diff --git a/assets/screenshots/Zed+Music.png b/assets/screenshots/Zed+Music.png new file mode 100644 index 0000000..41387ea Binary files /dev/null and b/assets/screenshots/Zed+Music.png differ diff --git a/assets/screenshots/Zed.png b/assets/screenshots/Zed.png new file mode 100644 index 0000000..cf0335e Binary files /dev/null and b/assets/screenshots/Zed.png differ diff --git a/assets/screenshots/pan.webp b/assets/screenshots/pan.webp new file mode 100644 index 0000000..d301ad7 Binary files /dev/null and b/assets/screenshots/pan.webp differ diff --git a/assets/wallpapers/city-horizon.jpg b/assets/wallpapers/city-horizon.jpg deleted file mode 100644 index 0836f1d..0000000 Binary files a/assets/wallpapers/city-horizon.jpg and /dev/null differ diff --git a/modules/features/layers/pipewire.nix b/modules/features/layers/pipewire.nix index 036a2cf..4db158c 100644 --- a/modules/features/layers/pipewire.nix +++ b/modules/features/layers/pipewire.nix @@ -3,6 +3,10 @@ flake.nixosModules.pipewire = { pkgs, lib, ... }: { + environment.systemPackages = with pkgs; [ + pulseaudio # Provides pactl + wireplumber + ]; # Enable sound with pipewire. services.pulseaudio.enable = false; security.rtkit.enable = true;