This commit is contained in:
Charlie Root 2024-08-17 11:50:52 +02:00
commit ae87f64c98
6 changed files with 7 additions and 57 deletions

View file

@ -1,5 +1,4 @@
{ {
self,
pkgs, pkgs,
config, config,
... ...
@ -9,16 +8,6 @@
# Select internationalisation properties. # Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8"; i18n.defaultLocale = "en_US.UTF-8";
console.keyMap = "de"; console.keyMap = "de";
nix = {
settings = {
substituters = ["https://hyprland.cachix.org"];
trusted-public-keys = [
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
];
# enable flakes
# reduce file size used & automatic garbage collector
};
};
security.sudo.package = pkgs.sudo.override {withInsults = true;}; security.sudo.package = pkgs.sudo.override {withInsults = true;};
security.polkit.enable = true; security.polkit.enable = true;
programs.kdeconnect.enable = true; programs.kdeconnect.enable = true;
@ -74,21 +63,6 @@
style = { style = {
gtk.enable = true; gtk.enable = true;
qt.enable = true; qt.enable = true;
stylix = {
enable = false;
scheme = "${pkgs.base16-schemes}/share/themes/bright.yaml";
cursor = {
size = 28;
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
};
fontsizes = {
terminal = 18;
popups = 14;
applications = 14;
};
image = self + "assets/wallpapers/wholefoods.jpg";
};
}; };
}; };
other = { other = {

View file

@ -81,7 +81,6 @@ in {
signal-desktop-beta signal-desktop-beta
smartmontools smartmontools
telegram-desktop telegram-desktop
temurin-jre-bin-17
tldr tldr
thunderbird thunderbird
trash-cli trash-cli

View file

@ -1,5 +1,4 @@
{ {
self,
pkgs, pkgs,
config, config,
... ...
@ -9,16 +8,6 @@
# Select internationalisation properties. # Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8"; i18n.defaultLocale = "en_US.UTF-8";
console.keyMap = "de"; console.keyMap = "de";
nix = {
settings = {
substituters = ["https://hyprland.cachix.org"];
trusted-public-keys = [
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
];
# enable flakes
# reduce file size used & automatic garbage collector
};
};
security.sudo.package = pkgs.sudo.override {withInsults = true;}; security.sudo.package = pkgs.sudo.override {withInsults = true;};
security.polkit.enable = true; security.polkit.enable = true;
programs.kdeconnect.enable = true; programs.kdeconnect.enable = true;
@ -67,21 +56,6 @@
}; };
style = { style = {
gtk.enable = true; gtk.enable = true;
stylix = {
enable = true;
scheme = "${pkgs.base16-schemes}/share/themes/bright.yaml";
cursor = {
size = 28;
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
};
fontsizes = {
terminal = 18;
popups = 14;
applications = 14;
};
image = self + "assets/wallpapers/wholefoods.jpg";
};
}; };
}; };
other = { other = {

View file

@ -7,7 +7,6 @@
inherit (lib.types) package str int; inherit (lib.types) package str int;
in { in {
imports = [ imports = [
./stylix.nix
./qt.nix ./qt.nix
./gtk.nix ./gtk.nix
]; ];

View file

@ -23,6 +23,8 @@ in {
title = "foot"; title = "foot";
locked-title = "no"; locked-title = "no";
font = "ComicShannsMono Nerd Font:size=14";
# line-height = 20; # line-height = 20;
letter-spacing = 0; letter-spacing = 0;
horizontal-letter-offset = 0; horizontal-letter-offset = 0;

View file

@ -1,7 +1,9 @@
{ {
services.xserver = { services.xserver = {
xkb.layout = "de,us"; xkb = {
xkbVariant = ",colemak_dh_wide"; layout = "de, us";
xkbOptions = "grp:rctrl_rshift_toggle"; variant = "colemak_dh_wide";
options = "grp:rctrl_rshift_toggle";
};
}; };
} }