Adjust hyprland configuration
This commit is contained in:
@@ -14,7 +14,6 @@ in
|
|||||||
kitty
|
kitty
|
||||||
evolution
|
evolution
|
||||||
pamixer
|
pamixer
|
||||||
nerd-fonts.open-dyslexic
|
|
||||||
nemo-with-extensions
|
nemo-with-extensions
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@@ -2,8 +2,14 @@
|
|||||||
let
|
let
|
||||||
dotfiles_hypr = pkgs.fetchgit {
|
dotfiles_hypr = pkgs.fetchgit {
|
||||||
url = "https://git.nichkara.eu/dotfiles/hypr";
|
url = "https://git.nichkara.eu/dotfiles/hypr";
|
||||||
rev = "96f9ca03450049baffbc8a2b71c3a40367edd2a5";
|
rev = "afddd6b09803a66f5a77f0a8021757d2b7d87c75";
|
||||||
sha256 = "sha256-dHxf2UNEDC/KyDgjMMQ988hyGM2gasYNbNtLTityhDY=";
|
sha256 = "sha256-bIwb0gxgYcFKFGt/UhSG1oLJSnSk/EwMjO3FNRmq4ok=";
|
||||||
|
};
|
||||||
|
|
||||||
|
dotfiles_waybar = pkgs.fetchgit {
|
||||||
|
url = "https://git.nichkara.eu/dotfiles/waybar";
|
||||||
|
rev = "84e705a0fbe7574fbdbcc7ed6e4a6f0af8c1eb3a";
|
||||||
|
sha256 = "sha256-upqTmXCS6epuE19PE+PlG5Xa0ke3+sTI75Kymb//WSE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
profile = import ../../profile.nix;
|
profile = import ../../profile.nix;
|
||||||
@@ -12,7 +18,6 @@ in
|
|||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
wofi
|
wofi
|
||||||
waybar
|
|
||||||
grim
|
grim
|
||||||
swaynotificationcenter
|
swaynotificationcenter
|
||||||
swaylock
|
swaylock
|
||||||
@@ -22,17 +27,31 @@ in
|
|||||||
wayvnc
|
wayvnc
|
||||||
];
|
];
|
||||||
|
|
||||||
|
fonts.packages = with pkgs; [
|
||||||
|
nerd-fonts.space-mono
|
||||||
|
];
|
||||||
|
|
||||||
programs.hyprland = {
|
programs.hyprland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
withUWSM = true;
|
withUWSM = true;
|
||||||
xwayland.enable = true;
|
xwayland.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.waybar = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
home-manager.users.${profile.username} = { ... }: {
|
home-manager.users.${profile.username} = { ... }: {
|
||||||
home.file.".config/hypr" = {
|
home.file.".config/hypr" = {
|
||||||
source = dotfiles_hypr;
|
source = dotfiles_hypr;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
home.file.".config/waybar" = {
|
||||||
|
source = dotfiles_waybar;
|
||||||
|
recursive = true;
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user