add hyprland config

This commit is contained in:
zoe 2023-02-28 12:06:39 +01:00
parent ab9317591b
commit f4d251a6c6
4 changed files with 6 additions and 7 deletions

View File

@ -19,10 +19,7 @@
homeConfigurations."zoe@bat" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
modules = [
hyprland.homeManagerModules.default
{ wayland.windowManager.hyprland.enable = true; }
];
modules = [];
};
};
}

View File

@ -11,6 +11,7 @@ in {
./rofi/settings.nix
./i3/i3status-rust.nix
./dunst/settings.nix
./hyprland/settings.nix
];
home-manager.users.zoe = {

View File

@ -9,8 +9,6 @@ OR EDIT THIS ONE ACCORDING TO THE WIKI INSTRUCTIONS.
# For a full list, see the wiki
#
autogenerated = 1 # remove this line to remove the warning
# See https://wiki.hyprland.org/Configuring/Monitors/
monitor=,preferred,auto,auto

View File

@ -1,4 +1,7 @@
{ pkgs, config, ... }:
{
xdg.configFile."hypr/hyprland.conf".source = ./hyprland.conf;
home.file.".config/hypr/hyprland.conf" = {
enable = true;
source = ./hyprland.conf;
};
}