Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3892be9175 | |||
| 75e21a7463 |
@@ -0,0 +1,44 @@
|
||||
{ pkgs, lib, ... }:
|
||||
let
|
||||
hyprFlake = builtins.getFlake "git+https://git.nichkara.eu/system/hyprlua";
|
||||
profile = import ../../profile.nix;
|
||||
in
|
||||
{
|
||||
|
||||
home.packages = with pkgs; [
|
||||
wofi
|
||||
grim
|
||||
swaynotificationcenter
|
||||
swaylock
|
||||
hyprpaper
|
||||
lxsession
|
||||
hyprshot
|
||||
wayvnc
|
||||
pamixer
|
||||
pavucontrol
|
||||
brightnessctl
|
||||
python313Packages.requests
|
||||
networkmanagerapplet
|
||||
];
|
||||
|
||||
wayland = {
|
||||
windowManager = {
|
||||
hyprland = {
|
||||
enable = true;
|
||||
xwayland.enable = true;
|
||||
configType = "hyprlang";
|
||||
extraConfig = "";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
programs.waybar = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
xdg.configFile."hypr" = {
|
||||
source = hyprFlake;
|
||||
recursive = true;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user