empty_pattern
This commit is contained in:
@@ -18,7 +18,6 @@
|
||||
#
|
||||
# All attributes intentionally use plain strings / ints so they can be
|
||||
# interpolated with `toString` or used directly in any context.
|
||||
{ ... }:
|
||||
{
|
||||
network = {
|
||||
# -----------------------------------------------------------------------
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
{ ... }:
|
||||
let
|
||||
gitAliases = {
|
||||
co = "checkout";
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
{ ... }:
|
||||
{
|
||||
programs.librewolf = {
|
||||
enable = false;
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
{ ... }:
|
||||
{
|
||||
# The default value of `programs.password-store.settings` has changed from `{ PASSWORD_STORE_DIR = "$XDG_DATA_HOME/password-store"; }` to `{ }`.
|
||||
# You are currently using the legacy default (`{ PASSWORD_STORE_DIR = "$XDG_DATA_HOME/password-store"; }`) because `home.stateVersion` is less than "25.11".
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
{ ... }:
|
||||
let
|
||||
defaultShellAliases = {
|
||||
l = "ls -alh";
|
||||
|
||||
@@ -1,6 +1,3 @@
|
||||
{
|
||||
...
|
||||
}:
|
||||
{
|
||||
#services.gnome-keyring.enable = false;
|
||||
#home.packages = [ pkgs.gcr ];
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
{ ... }:
|
||||
final: prev: {
|
||||
python3 = prev.python3.override {
|
||||
packageOverrides = _pyFinal: pyPrev: {
|
||||
radios = pyPrev.radios.overridePythonAttrs (old: {
|
||||
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ pyPrev.pythonRelaxDepsHook ];
|
||||
pythonRelaxDeps = [ "pycountry" ];
|
||||
});
|
||||
};
|
||||
};
|
||||
python3Packages = final.python3.pkgs;
|
||||
}
|
||||
@@ -3,13 +3,11 @@
|
||||
# manual_inherit / manual_inherit_from: very high volume of style suggestions.
|
||||
# useless_parens: many intentional parentheses for readability.
|
||||
# empty_pattern: { ... }: is a valid and readable no-arg pattern.
|
||||
# unquoted_uri: false-positives inside shell heredocs in Nix strings.
|
||||
disabled = [
|
||||
"manual_inherit",
|
||||
"manual_inherit_from",
|
||||
"useless_parens",
|
||||
"empty_pattern",
|
||||
"unquoted_uri",
|
||||
"empty_pattern", # needed for some overlays
|
||||
]
|
||||
|
||||
# Exclude files where statix's parser fails on complex shell-in-Nix content.
|
||||
|
||||
@@ -34,21 +34,9 @@
|
||||
nix = {
|
||||
linux-builder = {
|
||||
enable = false;
|
||||
config = (
|
||||
{ ... }:
|
||||
{
|
||||
virtualisation.cores = 6;
|
||||
# environment.etc."ccache.conf".text = ''
|
||||
# remote_storage: redis://jallen-nas.local:6363
|
||||
# remote_only: true
|
||||
# '';
|
||||
# programs.ccache.cacheDir = "/etc/ccache";
|
||||
# systemd.tmpfiles.rules = [
|
||||
# # "d /var/cache/ccache 0770 builder nixbld -"
|
||||
# "p+ /var/cache/ccache/ccache.conf - - - - /etc/ccache.conf"
|
||||
# ];
|
||||
}
|
||||
);
|
||||
config = ({
|
||||
virtualisation.cores = 6;
|
||||
});
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
{ ... }:
|
||||
{
|
||||
services.nix-plist-manager = {
|
||||
enable = true;
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
{ ... }:
|
||||
{
|
||||
disko.devices = {
|
||||
disk = {
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
{ ... }:
|
||||
{
|
||||
services.lsfg-vk = {
|
||||
enable = true;
|
||||
|
||||
Reference in New Issue
Block a user