This commit is contained in:
Leonardo Eugênio 2022-12-01 23:13:00 -03:00
parent b9b85657db
commit 8ee461d1de
9 changed files with 21 additions and 28 deletions

View file

@ -1,6 +1,5 @@
{ config, pkgs, lib, inputs, ... }:
let inherit (import ./variables.nix) key theme color accent font desktop;
let inherit (import ./variables.nix) desktop;
in {
imports = [
./controller.nix

View file

@ -60,8 +60,6 @@ in {
# output_folder = "/home/lelgenio";
};
};
home.sessionVariables = {
MANGOHUD_DLSYM = 1;
};
home.sessionVariables = { MANGOHUD_DLSYM = 1; };
};
}

View file

@ -5,10 +5,6 @@
pass-secret-service.enable = true;
password-store-sync.enable = true;
};
home.packages = with pkgs; [
pass
wpass
_gpg-unlock
];
home.packages = with pkgs; [ pass wpass _gpg-unlock ];
};
}