hell n back
This commit is contained in:
parent
3ee6761b45
commit
cac7203033
45 changed files with 2988 additions and 177 deletions
15
modules/hyprland/default.nix
Normal file
15
modules/hyprland/default.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ inputs, pkgs, lib, config, ... }:
|
||||
|
||||
with lib;
|
||||
let cfg = config.modules.hyprland;
|
||||
|
||||
in {
|
||||
options.modules.hyprland= { enable = mkEnableOption "hyprland"; };
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs; [
|
||||
wofi swaybg wlsunset wl-clipboard hyprland
|
||||
];
|
||||
|
||||
home.file.".config/hypr/hyprland.conf".source = ./hyprland.conf;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue