This commit is contained in:
parent
b8781fff93
commit
532055085f
4 changed files with 10 additions and 7 deletions
6
flake.lock
generated
6
flake.lock
generated
|
@ -186,11 +186,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1738790283,
|
"lastModified": 1740334274,
|
||||||
"narHash": "sha256-SKz3KfmK7iupR+Ef022pQQZccxXlm/2w5HxpSv+PAGE=",
|
"narHash": "sha256-7WePvSVCZFoq10tf0LF6MsYbS/JPl/eQjE6zsfz5RpE=",
|
||||||
"owner": "nydragon",
|
"owner": "nydragon",
|
||||||
"repo": "hjem-rum",
|
"repo": "hjem-rum",
|
||||||
"rev": "ac4bf585731b813ad37cb3822ad44b1e3bb16a7e",
|
"rev": "20b1173bc9fee5ef26a11578934f01992b84e5a2",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
./firefox
|
./firefox
|
||||||
./thunderbird
|
./thunderbird
|
||||||
./vscode
|
./vscode
|
||||||
./fuzzel.nix
|
|
||||||
./gammastep.nix # default because I need to protect my peepers
|
./gammastep.nix # default because I need to protect my peepers
|
||||||
./swww.nix
|
./swww.nix
|
||||||
./swayidle.nix
|
./swayidle.nix
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./foot.nix
|
./foot.nix
|
||||||
|
./fuzzel.nix
|
||||||
./keepassxc.nix
|
./keepassxc.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
{ lib, osConfig, ... }:
|
{ lib, osConfig, ... }:
|
||||||
|
let
|
||||||
|
inherit (osConfig.modules.system.roles) desktop;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
programs.fuzzel = {
|
rum.programs.fuzzel = {
|
||||||
enable = true;
|
enable = desktop.enable;
|
||||||
settings = {
|
settings = {
|
||||||
main = {
|
main = {
|
||||||
icon-theme = "Papirus-Dark";
|
icon-theme = "Papirus-Dark";
|
||||||
|
@ -9,7 +12,7 @@
|
||||||
font = "Hack:weight=bold";
|
font = "Hack:weight=bold";
|
||||||
line-height = 30;
|
line-height = 30;
|
||||||
fields = "name,generic,comment";
|
fields = "name,generic,comment";
|
||||||
terminal = lib.my.getExe osConfig.modules.system.roles.desktop.terminal;
|
terminal = lib.my.getExe desktop.terminal;
|
||||||
prompt = ''"❯ "'';
|
prompt = ''"❯ "'';
|
||||||
layer = "overlay";
|
layer = "overlay";
|
||||||
};
|
};
|
Loading…
Add table
Reference in a new issue