mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-09-19 16:49:04 +05:30
feat(serpantinum): enable idle configuration
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
{ inputs, ... }: {
|
||||
|
||||
{inputs, ...}: {
|
||||
flake.modules.nixos.desktop = {
|
||||
imports = [
|
||||
inputs.serpantinum.nixosModules.default
|
||||
@@ -8,12 +7,12 @@
|
||||
programs.serpantinum.enable = true;
|
||||
};
|
||||
|
||||
flake.modules.homeManager.desktop = { pkgs, ... }: {
|
||||
flake.modules.homeManager.desktop = {pkgs, ...}: {
|
||||
imports = [
|
||||
inputs.serpantinum.homeManagerModules.default
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [ pulseaudioFull ];
|
||||
home.packages = with pkgs; [pulseaudioFull];
|
||||
|
||||
programs.serpantinum = {
|
||||
enable = true;
|
||||
@@ -40,7 +39,7 @@
|
||||
"sysmon"
|
||||
"wifi"
|
||||
];
|
||||
center = [ "vis" ];
|
||||
center = ["vis"];
|
||||
right = [
|
||||
"media"
|
||||
"vol"
|
||||
@@ -62,6 +61,11 @@
|
||||
position = "top right";
|
||||
sound = true;
|
||||
};
|
||||
|
||||
idle = {
|
||||
enabled = true;
|
||||
manualInhibit = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user