mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
fix stuff
This commit is contained in:
parent
13407dcdc8
commit
02ecacc8bd
4 changed files with 10 additions and 9 deletions
|
|
@ -1,9 +1,5 @@
|
||||||
{ nvim-flake, self, ... }:
|
{ nvim-flake, self, ... }:
|
||||||
{
|
{ pkgs, config, ... }:
|
||||||
pkgs,
|
|
||||||
config,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
{
|
{
|
||||||
local = {
|
local = {
|
||||||
remoteBuild.isBuilder = true;
|
remoteBuild.isBuilder = true;
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,12 @@ in
|
||||||
programs.spicetify = {
|
programs.spicetify = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enabledExtensions = builtins.attrValues {
|
enabledExtensions = builtins.attrValues {
|
||||||
inherit (spicePkgs.extensions) adblock hidePodcasts shuffle betterGenres;
|
inherit (spicePkgs.extensions)
|
||||||
|
adblock
|
||||||
|
hidePodcasts
|
||||||
|
shuffle
|
||||||
|
betterGenres
|
||||||
|
;
|
||||||
};
|
};
|
||||||
theme = spicePkgs.themes.dribbblish;
|
theme = spicePkgs.themes.dribbblish;
|
||||||
colorScheme = "custom";
|
colorScheme = "custom";
|
||||||
|
|
|
||||||
|
|
@ -182,7 +182,7 @@ in
|
||||||
};
|
};
|
||||||
systemd.tmpfiles.rules = [
|
systemd.tmpfiles.rules = [
|
||||||
"L /etc/Xorg/active.conf - - - - /etc/Xorg/2_mon.conf"
|
"L /etc/Xorg/active.conf - - - - /etc/Xorg/2_mon.conf"
|
||||||
"L+ /var/lib/libvirt/qemu/Windows.xml - - - - ${./Windows.xml}"
|
"L+ /var/lib/libvirt/qemu/Windows.xml - - - - ${self}/hosts/gerg-desktop/Windows.xml"
|
||||||
];
|
];
|
||||||
#_file
|
#_file
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ rec {
|
||||||
builtins.filter (lib.hasSuffix ".nix") (map toString (lib.filesystem.listFilesRecursive path));
|
builtins.filter (lib.hasSuffix ".nix") (map toString (lib.filesystem.listFilesRecursive path));
|
||||||
|
|
||||||
listNixFilesRecursiveDiscardStringContext =
|
listNixFilesRecursiveDiscardStringContext =
|
||||||
x: (map builtins.unsafeDiscardStringContext) (listNixFilesRecursive x);
|
x: listNixFilesRecursive (builtins.unsafeDiscardStringContext x);
|
||||||
|
|
||||||
fixModuleSystem =
|
fixModuleSystem =
|
||||||
file:
|
file:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue