Compare commits
2 Commits
8ea2d5b6a8
...
a8067251a5
Author | SHA1 | Date | |
---|---|---|---|
a8067251a5 | |||
a5cc260a13 |
17
home-hyprland.nix
Normal file
17
home-hyprland.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{pkgs, ...}: let
|
||||
flake-compat = builtins.fetchTarball "https://github.com/edolstra/flake-compat/archive/master.tar.gz";
|
||||
|
||||
hyprland = (import flake-compat {
|
||||
src = builtins.fetchTarball "https://github.com/hyprwm/Hyprland/archive/master.tar.gz";
|
||||
}).defaultNix;
|
||||
in {
|
||||
imports = [
|
||||
hyprland.homeManagerModules.default
|
||||
];
|
||||
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
|
||||
extraConfig = (builtins.readFile ./config/hypr/hyprland.conf);
|
||||
};
|
||||
}
|
@ -18,6 +18,10 @@ in
|
||||
kitty # terminfo support
|
||||
];
|
||||
|
||||
imports = [
|
||||
./home-hyprland.nix
|
||||
];
|
||||
|
||||
programs = {
|
||||
fish = {
|
||||
enable = true;
|
||||
|
@ -8,7 +8,7 @@
|
||||
fwupd # firmware updates
|
||||
fwupd-efi # firmware updates additional EFI stuff
|
||||
wget # get stuff from the net
|
||||
hyprland # window manager
|
||||
#hyprland # window manager
|
||||
wayland # wayland server
|
||||
xdg-utils # xdg directories, open, etc
|
||||
];
|
||||
|
Reference in New Issue
Block a user