quickshell!
This commit is contained in:
parent
6697dbb64b
commit
dc8e6873c3
17 changed files with 251 additions and 47 deletions
|
@ -2,9 +2,9 @@
|
|||
inherit (inputs) self;
|
||||
inherit (self) lib;
|
||||
in {
|
||||
temperance = lib.nixosSystem {
|
||||
temperance = lib.nixosSystem rec {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {inherit lib inputs self;};
|
||||
specialArgs = {inherit lib inputs self system;};
|
||||
modules = [
|
||||
./vali/temperance
|
||||
../modules
|
||||
|
@ -13,9 +13,9 @@ in {
|
|||
inputs.stylix.nixosModules.stylix
|
||||
];
|
||||
};
|
||||
hermit = lib.nixosSystem {
|
||||
hermit = lib.nixosSystem rec {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {inherit lib inputs self;};
|
||||
specialArgs = {inherit lib inputs self system;};
|
||||
modules = [
|
||||
./vali/hermit
|
||||
../modules
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
experimental-features = ["nix-command" "flakes"];
|
||||
# reduce file size used & automatic garbage collector
|
||||
auto-optimise-store = true;
|
||||
max-jobs = 3;
|
||||
cores = 4;
|
||||
};
|
||||
};
|
||||
security.sudo.package = pkgs.sudo.override {withInsults = true;};
|
||||
|
@ -94,7 +96,8 @@
|
|||
pipewire.enable = true;
|
||||
dunst.enable = true;
|
||||
};
|
||||
themes = {
|
||||
theming = {
|
||||
quickshell.enable = true;
|
||||
stylix = {
|
||||
enable = true;
|
||||
# scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark-pale.yaml";
|
||||
|
|
|
@ -18,6 +18,7 @@ in {
|
|||
browsh
|
||||
bun
|
||||
cachix
|
||||
calc
|
||||
cmake
|
||||
difftastic
|
||||
dig
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue