feat: make rofi toggleable
This commit is contained in:
parent
fd76089ca7
commit
63a2e52ed3
4 changed files with 21 additions and 3 deletions
|
@ -6,5 +6,6 @@
|
|||
./foot.nix
|
||||
./graphical
|
||||
./terminal
|
||||
./rofi
|
||||
];
|
||||
}
|
||||
|
|
|
@ -4,14 +4,13 @@
|
|||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
lib.mkIf config.programs.rofi.enable {
|
||||
programs.rofi =
|
||||
let
|
||||
conf = "${config.home.homeDirectory}/.config/rofi";
|
||||
in
|
||||
rec {
|
||||
package = pkgs.rofi-wayland.override { inherit plugins; };
|
||||
enable = true;
|
||||
plugins = [ pkgs.rofi-calc ];
|
||||
theme = "${conf}/themes/rounded-gray-dark.rasi";
|
||||
terminal = "${pkgs.alacritty}/bin/alacritty";
|
||||
|
|
|
@ -36,6 +36,12 @@
|
|||
HibernateDelaySec=1200
|
||||
'';
|
||||
|
||||
specialisation = {
|
||||
gpu.configuration = {
|
||||
imports = [ inputs.nixos-hardware.nixosModules.dell-xps-15-9510-nvidia ];
|
||||
};
|
||||
};
|
||||
|
||||
programs = {
|
||||
dconf.enable = true;
|
||||
steam.enable = true;
|
||||
|
@ -45,6 +51,16 @@
|
|||
sway.enable = true;
|
||||
};
|
||||
|
||||
services.greetd = {
|
||||
enable = true;
|
||||
settings = {
|
||||
default_session = {
|
||||
command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd \"sway --unsupported-gpu\"";
|
||||
user = "greeter";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
services.printing.enable = true;
|
||||
|
||||
#: Virtualisation {{{
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
home-manager.users.${username} = {
|
||||
imports = [
|
||||
../../home/sway
|
||||
../../home/rofi
|
||||
../../home/themes/catppuccin.nix
|
||||
../../home
|
||||
];
|
||||
|
@ -28,6 +27,9 @@
|
|||
nix-direnv.enable = true;
|
||||
};
|
||||
|
||||
programs = {
|
||||
rofi.enable = true;
|
||||
};
|
||||
home = {
|
||||
stateVersion = config.system.stateVersion;
|
||||
inherit username;
|
||||
|
|
Loading…
Add table
Reference in a new issue