diff --git a/home/lilith/default.nix b/home/lilith/default.nix index e109e139..0ed67a15 100644 --- a/home/lilith/default.nix +++ b/home/lilith/default.nix @@ -1,16 +1,12 @@ -{ sops-nix, hyprpanel, ...}: { +{ sops-nix, stylix, ...}: { imports = [ - # ags.homeManagerModules.default - # matshell.homeManagerModules.default - # sops-nix.homeManagerModules.sops - # ./ags # ToDo: get codin :3 + sops-nix.homeManagerModules.sops + ./hyprland ./rofi.nix ./dunst.nix ./hyprpanel.nix - # ./matshell.nix - ./env.nix ./alacritty.nix @@ -26,6 +22,7 @@ ./playerctld.nix ./sops.nix ./ssh.nix + ./stylix.nix ./thunderbird.nix ./zsh ]; diff --git a/home/lilith/firefox.nix b/home/lilith/firefox.nix index c4616d04..4bea0e04 100644 --- a/home/lilith/firefox.nix +++ b/home/lilith/firefox.nix @@ -1,6 +1,4 @@ { pkgs, ...}: { - # imports = [arkenfox.hmModules.arkenfox]; - programs.firefox = { enable = true; @@ -84,30 +82,5 @@ "browser.translations.neverTranslateLanguages" = true; }; }; - - # arkenfox.enable = true; - # arkenfox.version = "master"; - - # profiles.Default.arkenfox = { - # enable = true; - # "0000".enable = true; - # "0100".enable = true; - # "0200".enable = true; - # "0300".enable = true; - # "0400".enable = true; - # "0600".enable = true; - # "0700".enable = true; - # "0800".enable = true; - # "0900".enable = true; - # "1000".enable = true; - # "1200".enable = true; - # "1600".enable = true; - # "1700".enable = true; - # "2000".enable = true; - # "2400".enable = true; - # "2600".enable = true; - # "2700".enable = true; - # "2800".enable = true; - # }; }; } diff --git a/home/lilith/hyprland/default.nix b/home/lilith/hyprland/default.nix index e4dbb90a..ee61f401 100644 --- a/home/lilith/hyprland/default.nix +++ b/home/lilith/hyprland/default.nix @@ -35,15 +35,11 @@ windowrulev2 = [ "workspace special:keepass,class:org.keepassxc.KeePassXC,title:^(.*)(KeePassXC)(.*)$" "workspace unset,class:org.keepassxc.KeePassXC,title:Unlock Database - KeePassXC" - - "workspace special:chatgpt,class:firefox,title:ChatGPT — Mozilla Firefox" - "float,class:firefox,title:ChatGPT — Mozilla Firefox" ]; workspace = [ "special:keepass,gapsout:45" "special:magic,gapsout:45" - "special:chatgpt,gapsout:45" ]; input = { diff --git a/home/lilith/hyprpanel.nix b/home/lilith/hyprpanel.nix index 1be5ce0b..d342dba5 100644 --- a/home/lilith/hyprpanel.nix +++ b/home/lilith/hyprpanel.nix @@ -1,3 +1,3 @@ {hyprpanel, ...}: { - imports = [ inputs.hyprpanel.homeManagerModules.hyprpanel ]; + imports = [ hyprpanel.homeManagerModules.hyprpanel ]; } diff --git a/home/lilith/stylix.nix b/home/lilith/stylix.nix new file mode 100644 index 00000000..8603af4f --- /dev/null +++ b/home/lilith/stylix.nix @@ -0,0 +1,7 @@ +{ stylix, ...}: { + imports = [ stylix.homeManagerModules.stylix ]; + + stylix.targets = { + firefox.enable = false; + }; +}