refactor2
This commit is contained in:
parent
8b771361d0
commit
b9e206af24
5 changed files with 10 additions and 29 deletions
|
|
@ -7,14 +7,14 @@
|
||||||
home-manager.users."lilith" = {
|
home-manager.users."lilith" = {
|
||||||
imports = [
|
imports = [
|
||||||
# ags.homeManagerModules.default
|
# ags.homeManagerModules.default
|
||||||
matshell.homeManagerModules.default
|
# matshell.homeManagerModules.default
|
||||||
sops-nix.homeManagerModules.sops
|
sops-nix.homeManagerModules.sops
|
||||||
# ./ags # ToDo: get codin :3
|
# ./ags # ToDo: get codin :3
|
||||||
./hyprland
|
./hyprland
|
||||||
./rofi.nix
|
./rofi.nix
|
||||||
./dunst.nix
|
./dunst.nix
|
||||||
|
|
||||||
./matshell.nix
|
# ./matshell.nix
|
||||||
|
|
||||||
./env.nix
|
./env.nix
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@
|
||||||
desktop.enable = true;
|
desktop.enable = true;
|
||||||
gaming.enable = true;
|
gaming.enable = true;
|
||||||
nfs.client.enable = true;
|
nfs.client.enable = true;
|
||||||
stylix.enable = true;
|
auto_styling.enable = true;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,5 +10,10 @@
|
||||||
./nix.nix
|
./nix.nix
|
||||||
./packages.nix
|
./packages.nix
|
||||||
./persistence.nix
|
./persistence.nix
|
||||||
|
./sops.nix
|
||||||
|
./ssh.nix
|
||||||
|
./syncthing.nix
|
||||||
|
./users.nix
|
||||||
|
./zsh.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,24 +0,0 @@
|
||||||
{...}: {
|
|
||||||
hardware.graphics.enable = true;
|
|
||||||
|
|
||||||
security.polkit.enable = true;
|
|
||||||
security.pam.services.hyprlock = {};
|
|
||||||
|
|
||||||
services.dbus.enable = true;
|
|
||||||
|
|
||||||
programs.hyprland.enable = true;
|
|
||||||
|
|
||||||
services.greetd = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
default_session = {
|
|
||||||
user = "lilith";
|
|
||||||
command = "Hyprland";
|
|
||||||
};
|
|
||||||
initial_session = {
|
|
||||||
user = "lilith";
|
|
||||||
command = "Hyprland";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
{stylix, pkgs, config, lib, ...}: {
|
{stylix, pkgs, config, lib, ...}: {
|
||||||
imports = [ stylix.nixosModules.stylix ];
|
imports = [ stylix.nixosModules.stylix ];
|
||||||
|
|
||||||
options.stylix.enable = lib.mkEnableOption "Enable Stylix";
|
options.auto_styling.enable = lib.mkEnableOption "Enable Stylix";
|
||||||
|
|
||||||
config = lib.mkIf config.stylix.enable {
|
config = lib.mkIf config.auto_styling.enable {
|
||||||
stylix = {
|
stylix = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue