new culr
This commit is contained in:
parent
c470c63ab2
commit
bafb226314
15 changed files with 443 additions and 179 deletions
|
@ -20,7 +20,7 @@
|
|||
outputs.overlays.murex-jump
|
||||
outputs.overlays.comfyui
|
||||
outputs.overlays.comfyui-plugins
|
||||
outputs.overlays.utillinux
|
||||
outputs.overlays.sirula
|
||||
];
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
|
@ -88,7 +88,7 @@
|
|||
|
||||
services.udisks2.enable = true;
|
||||
|
||||
services.flatpak.enable = true;
|
||||
# services.flatpak.enable = true;
|
||||
|
||||
security.polkit.enable = true;
|
||||
|
||||
|
|
6
system/modules/culr.nix
Normal file
6
system/modules/culr.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{...}: {
|
||||
programs.meat = {
|
||||
enable = true;
|
||||
pattern = "rainbow-pair";
|
||||
};
|
||||
}
|
|
@ -1,16 +1,18 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
mainUser,
|
||||
...
|
||||
}: {
|
||||
services.greetd = {
|
||||
enable = true;
|
||||
settings = {
|
||||
default_session = let
|
||||
tuigreet = "${lib.getExe pkgs.greetd.tuigreet}";
|
||||
in {
|
||||
command = "${tuigreet} -g yo -r";
|
||||
};
|
||||
restart = false;
|
||||
settings = let session = {
|
||||
command = "niri-session";
|
||||
user = "${mainUser}";
|
||||
}; in {
|
||||
default_session = session;
|
||||
initial_session = session;
|
||||
};
|
||||
};
|
||||
programs.niri = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue