configure rofi

This commit is contained in:
CDaut 2024-02-24 00:30:05 +01:00
parent e0b88992f5
commit d7934e2107
Signed by: clara
GPG key ID: 223391B52FAD4463
6 changed files with 117 additions and 5 deletions

View file

@ -20,8 +20,9 @@ in
home.stateVersion = "24.05"; # Please read the comment before changing.
imports = [
./git.nix
./vscode.nix
./programm_configs/git.nix
./programm_configs/vscode.nix
./programm_configs/rofi.nix
];
# The home.packages option allows you to install Nix packages into your
@ -36,12 +37,15 @@ in
];
# dotfiles
home.file = {
home.file = {
rofitheme = {
source = ./programm_configs/slate.rasi;
target = ".config/rofi/slate.rasi";
};
};
# envars
home.sessionVariables = {
EDITOR = "vim";
EDITOR = "vim";
};
}