Add extra Hyprland packages back to flake
This commit is contained in:
parent
121eebc2b2
commit
bbc11f6af2
37
flake.nix
37
flake.nix
|
@ -29,15 +29,38 @@
|
|||
users.root.imports = [./home/env/bash.nix ./home/env/starship.nix];
|
||||
};
|
||||
};
|
||||
hyprland-config = {
|
||||
hyprland-config = {pkgs, ...}: {
|
||||
imports = [hyprland.nixosModules.default];
|
||||
environment.systemPackages = with pkgs; [
|
||||
gsettings-desktop-schemas
|
||||
pavucontrol
|
||||
pamixer
|
||||
pulseaudio
|
||||
pipewire
|
||||
wireplumber
|
||||
wl-clipboard
|
||||
swayimg
|
||||
hyprpaper
|
||||
grim
|
||||
slurp
|
||||
];
|
||||
security.pam.services.swaylock = {};
|
||||
programs.hyprland.enable = true;
|
||||
services.greetd = {
|
||||
enable = true;
|
||||
settings = rec {
|
||||
initial_session.command = "Hyprland";
|
||||
default_session = initial_session;
|
||||
programs = {
|
||||
hyprland.enable = true;
|
||||
thunar = {
|
||||
enable = true;
|
||||
plugins = with pkgs.xfce; [thunar-archive-plugin thunar-volman];
|
||||
};
|
||||
};
|
||||
services = {
|
||||
gvfs.enable = true; # Mount, trash, and other functionalities
|
||||
tumbler.enable = true; # Thumbnail support for images
|
||||
greetd = {
|
||||
enable = true;
|
||||
settings = rec {
|
||||
initial_session.command = "Hyprland";
|
||||
default_session = initial_session;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -5,19 +5,11 @@
|
|||
}: {
|
||||
imports = [
|
||||
./swaylock.nix
|
||||
# ./eww.nix
|
||||
./waybar.nix
|
||||
./gtk.nix
|
||||
./dunst.nix
|
||||
./rofi.nix
|
||||
];
|
||||
home.packages = with pkgs; [
|
||||
pipewire
|
||||
wireplumber
|
||||
wl-clipboard
|
||||
swayimg
|
||||
hyprpaper
|
||||
];
|
||||
programs.rofi.package = pkgs.rofi-wayland;
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in a new issue