setup basics of rofi
This commit is contained in:
parent
cac1d3fbed
commit
3f199f8f4d
3 changed files with 21 additions and 1 deletions
|
@ -5,7 +5,6 @@
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
xsecurelock
|
xsecurelock
|
||||||
rofi
|
|
||||||
];
|
];
|
||||||
|
|
||||||
fonts.fonts = with pkgs; [
|
fonts.fonts = with pkgs; [
|
||||||
|
|
|
@ -14,6 +14,8 @@
|
||||||
gaming
|
gaming
|
||||||
|
|
||||||
themeing
|
themeing
|
||||||
|
|
||||||
|
rofi
|
||||||
])
|
])
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
19
users/profiles/rofi.nix
Normal file
19
users/profiles/rofi.nix
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
programs.rofi = {
|
||||||
|
enable = true;
|
||||||
|
extraConfig = {
|
||||||
|
modi = builtins.concatStringsSep "," [
|
||||||
|
"window"
|
||||||
|
"run"
|
||||||
|
"ssh"
|
||||||
|
"windowcd"
|
||||||
|
"drun"
|
||||||
|
"combi"
|
||||||
|
"keys"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
plugins = with pkgs; [ ];
|
||||||
|
pass.enable = true;
|
||||||
|
theme = "Adapta-Nokto";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue