anicca, qt, samhain updoot

This commit is contained in:
kat witch 2021-08-25 16:44:34 +01:00
parent b12e853b31
commit dde2110ac9
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
8 changed files with 41 additions and 2 deletions

View file

@ -95,9 +95,11 @@ in
home.persistence."/persist/home" = {
allowOther = true;
directories = [
".local/share/z"
".local/share/dino"
".local/share/weechat"
".local/share/Mumble"
".local/share/direnv"
".config/Mumble"
".config/Element"
".password-store"
@ -110,6 +112,7 @@ in
"shared"
];
files = [
".ssh/known_hosts"
".zsh_history"
];
};
@ -131,6 +134,8 @@ in
deploy.profile.hardware.acs-override = true;
users.users.kat.extraGroups = singleton "openrazer";
hardware.openrazer = {
enable = true;
};

View file

@ -5,6 +5,7 @@
./fonts.nix
./sway.nix
./filesystems.nix
./qt.nix
./gpg.nix
./xdg-portals.nix
./dns.nix

View file

@ -0,0 +1,9 @@
{ config, ... }:
{
qt5 = {
enable = true;
style = "adwaita-dark";
platformTheme = "gnome";
};
}

View file

@ -1,5 +1,5 @@
{ config, ... }:
{
imports = [ ./firefox.nix ./firefox-tst.nix ./packages.nix ./gtk.nix ./foot.nix ./xdg.nix ./ranger.nix ./fonts.nix ];
imports = [ ./firefox.nix ./firefox-tst.nix ./packages.nix ./gtk.nix ./foot.nix ./xdg.nix ./ranger.nix ./fonts.nix ./qt.nix ];
}

View file

@ -33,7 +33,6 @@ in
sponsorblock
floccus
link-cleaner
octotree
betterttv
canvasblocker
view-image

View file

@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
qt = {
enable = true;
platformTheme = "gtk";
style = {
name = "adwaita-dark";
package = pkgs.adwaita-qt;
};
};
}

View file

@ -1,4 +1,16 @@
{
"anicca": {
"branch": "main",
"description": "A helper for transitioning to impermanence",
"homepage": "",
"owner": "kittywitch",
"repo": "anicca",
"rev": "d4ef7f09558ce9f80e198ebe364d60d05eea97f9",
"sha256": "05sciibf2ylmlj34rqb2cyr6djwh6q7caqi0ahrkypmzgcnch2v4",
"type": "tarball",
"url": "https://github.com/kittywitch/anicca/archive/d4ef7f09558ce9f80e198ebe364d60d05eea97f9.tar.gz",
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
},
"arcexprs": {
"branch": "master",
"description": "nix stuff",

View file

@ -6,6 +6,7 @@ let
nurpkgs = self;
pkgs = self;
};
anicca = self.callPackage sources.anicca {};
rustfmt = super.rustfmt.overrideAttrs ({ patches ? [ ], ... }: {
patches = patches ++ [
# Adds an option variant that merges all use statements into a single block.