mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
anicca, qt, samhain updoot
This commit is contained in:
parent
b12e853b31
commit
dde2110ac9
8 changed files with 41 additions and 2 deletions
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
./fonts.nix
|
||||
./sway.nix
|
||||
./filesystems.nix
|
||||
./qt.nix
|
||||
./gpg.nix
|
||||
./xdg-portals.nix
|
||||
./dns.nix
|
||||
|
|
|
|||
9
config/profiles/gui/qt.nix
Normal file
9
config/profiles/gui/qt.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{ config, ... }:
|
||||
|
||||
{
|
||||
qt5 = {
|
||||
enable = true;
|
||||
style = "adwaita-dark";
|
||||
platformTheme = "gnome";
|
||||
};
|
||||
}
|
||||
|
|
@ -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 ];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -33,7 +33,6 @@ in
|
|||
sponsorblock
|
||||
floccus
|
||||
link-cleaner
|
||||
octotree
|
||||
betterttv
|
||||
canvasblocker
|
||||
view-image
|
||||
|
|
|
|||
12
config/users/kat/gui/qt.nix
Normal file
12
config/users/kat/gui/qt.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
qt = {
|
||||
enable = true;
|
||||
platformTheme = "gtk";
|
||||
style = {
|
||||
name = "adwaita-dark";
|
||||
package = pkgs.adwaita-qt;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue