empty_pattern
This commit is contained in:
@@ -18,7 +18,6 @@
|
|||||||
#
|
#
|
||||||
# All attributes intentionally use plain strings / ints so they can be
|
# All attributes intentionally use plain strings / ints so they can be
|
||||||
# interpolated with `toString` or used directly in any context.
|
# interpolated with `toString` or used directly in any context.
|
||||||
{ ... }:
|
|
||||||
{
|
{
|
||||||
network = {
|
network = {
|
||||||
# -----------------------------------------------------------------------
|
# -----------------------------------------------------------------------
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
{ ... }:
|
|
||||||
let
|
let
|
||||||
gitAliases = {
|
gitAliases = {
|
||||||
co = "checkout";
|
co = "checkout";
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
{ ... }:
|
|
||||||
{
|
{
|
||||||
programs.librewolf = {
|
programs.librewolf = {
|
||||||
enable = false;
|
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 `{ }`.
|
# 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".
|
# 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
|
let
|
||||||
defaultShellAliases = {
|
defaultShellAliases = {
|
||||||
l = "ls -alh";
|
l = "ls -alh";
|
||||||
|
|||||||
@@ -1,6 +1,3 @@
|
|||||||
{
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
{
|
{
|
||||||
#services.gnome-keyring.enable = false;
|
#services.gnome-keyring.enable = false;
|
||||||
#home.packages = [ pkgs.gcr ];
|
#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.
|
# manual_inherit / manual_inherit_from: very high volume of style suggestions.
|
||||||
# useless_parens: many intentional parentheses for readability.
|
# useless_parens: many intentional parentheses for readability.
|
||||||
# empty_pattern: { ... }: is a valid and readable no-arg pattern.
|
# empty_pattern: { ... }: is a valid and readable no-arg pattern.
|
||||||
# unquoted_uri: false-positives inside shell heredocs in Nix strings.
|
|
||||||
disabled = [
|
disabled = [
|
||||||
"manual_inherit",
|
"manual_inherit",
|
||||||
"manual_inherit_from",
|
"manual_inherit_from",
|
||||||
"useless_parens",
|
"useless_parens",
|
||||||
"empty_pattern",
|
"empty_pattern", # needed for some overlays
|
||||||
"unquoted_uri",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
# Exclude files where statix's parser fails on complex shell-in-Nix content.
|
# Exclude files where statix's parser fails on complex shell-in-Nix content.
|
||||||
|
|||||||
@@ -34,21 +34,9 @@
|
|||||||
nix = {
|
nix = {
|
||||||
linux-builder = {
|
linux-builder = {
|
||||||
enable = false;
|
enable = false;
|
||||||
config = (
|
config = ({
|
||||||
{ ... }:
|
virtualisation.cores = 6;
|
||||||
{
|
});
|
||||||
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"
|
|
||||||
# ];
|
|
||||||
}
|
|
||||||
);
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
{ ... }:
|
|
||||||
{
|
{
|
||||||
services.nix-plist-manager = {
|
services.nix-plist-manager = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
{ ... }:
|
|
||||||
{
|
{
|
||||||
disko.devices = {
|
disko.devices = {
|
||||||
disk = {
|
disk = {
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
{ ... }:
|
|
||||||
{
|
{
|
||||||
services.lsfg-vk = {
|
services.lsfg-vk = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user