hm hyprland to dir
This commit is contained in:
parent
bd68c1e103
commit
e83ff7f66a
@ -1,7 +1,7 @@
|
|||||||
{ lib, config, pkgs, ... }:
|
{ lib, config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./hyprland.nix
|
./wm/hyprland.nix
|
||||||
./terminal
|
./terminal
|
||||||
./lf
|
./lf
|
||||||
./webapps.nix
|
./webapps.nix
|
||||||
|
|||||||
6
modules/home-manager/wm/default.nix
Normal file
6
modules/home-manager/wm/default.nix
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{ lib, config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./hyprland.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
@ -8,11 +8,11 @@ in
|
|||||||
home.file = lib.mkMerge [
|
home.file = lib.mkMerge [
|
||||||
{
|
{
|
||||||
".config/mako/config" = {
|
".config/mako/config" = {
|
||||||
source = builtins.toPath ../../dotfiles/mako/config;
|
source = builtins.toPath ../../../dotfiles/mako/config;
|
||||||
force = true;
|
force = true;
|
||||||
};
|
};
|
||||||
".config/wofi" = {
|
".config/wofi" = {
|
||||||
source = builtins.toPath ../../dotfiles/wofi;
|
source = builtins.toPath ../../../dotfiles/wofi;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
force = true;
|
force = true;
|
||||||
};
|
};
|
||||||
@ -20,17 +20,17 @@ in
|
|||||||
|
|
||||||
(mkIf smayzy.desktop.enable {
|
(mkIf smayzy.desktop.enable {
|
||||||
".config/hypr" = {
|
".config/hypr" = {
|
||||||
source = builtins.toPath ../../dotfiles/hypr-desk;
|
source = builtins.toPath ../../../dotfiles/hypr-desk;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
force = true;
|
force = true;
|
||||||
};
|
};
|
||||||
".config/waybar" = {
|
".config/waybar" = {
|
||||||
source = builtins.toPath ../../dotfiles/waybar-desk;
|
source = builtins.toPath ../../../dotfiles/waybar-desk;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
force = true;
|
force = true;
|
||||||
};
|
};
|
||||||
".config/wlogout" = {
|
".config/wlogout" = {
|
||||||
source = builtins.toPath ../../dotfiles/wlogout-desk;
|
source = builtins.toPath ../../../dotfiles/wlogout-desk;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
force = true;
|
force = true;
|
||||||
};
|
};
|
||||||
@ -38,17 +38,17 @@ in
|
|||||||
|
|
||||||
(mkIf smayzy.laptop.enable {
|
(mkIf smayzy.laptop.enable {
|
||||||
".config/hypr" = {
|
".config/hypr" = {
|
||||||
source = builtins.toPath ../../dotfiles/hypr-lap;
|
source = builtins.toPath ../../../dotfiles/hypr-lap;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
force = true;
|
force = true;
|
||||||
};
|
};
|
||||||
".config/waybar" = {
|
".config/waybar" = {
|
||||||
source = builtins.toPath ../../dotfiles/waybar-lap;
|
source = builtins.toPath ../../../dotfiles/waybar-lap;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
force = true;
|
force = true;
|
||||||
};
|
};
|
||||||
".config/wlogout" = {
|
".config/wlogout" = {
|
||||||
source = builtins.toPath ../../dotfiles/wlogout-lap;
|
source = builtins.toPath ../../../dotfiles/wlogout-lap;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
force = true;
|
force = true;
|
||||||
};
|
};
|
||||||
Loading…
Reference in New Issue
Block a user