lowkey kirking it

This commit is contained in:
TheCrazyInsanity
2025-12-16 12:55:40 -05:00
parent fd2389fed1
commit 1f0a61f56e
5 changed files with 140 additions and 94 deletions

View File

@@ -1,16 +1,23 @@
# This is for global config I DEFINITELY want on all machines, this should only include basic utilities and be relatively small.
# There is no order for where things are in this, it's a little messy.
{pkgs, ...}:
{ pkgs, nix-flatpak, ... }:
{
imports = [
# nix-flatpak.nixosModules.nix-flatpak
];
# Lix
nixpkgs.overlays = [ (final: prev: {
inherit (prev.lixPackageSets.stable)
nixpkgs-review
nix-eval-jobs
nix-fast-build
colmena;
}) ];
nixpkgs.overlays = [
(final: prev: {
inherit (prev.lixPackageSets.stable)
nixpkgs-review
nix-eval-jobs
nix-fast-build
colmena
;
})
];
nix.package = pkgs.lixPackageSets.stable.lix;
# 🇺🇸
@@ -55,10 +62,27 @@
users.users.laythe = {
isNormalUser = true;
description = "laythe";
extraGroups = [ "networkmanager" "wheel" "docker" "adbusers" "jackaudio" "podman" ];
extraGroups = [
"networkmanager"
"wheel"
"docker"
"adbusers"
"jackaudio"
"podman"
];
#To make podman work
subUidRanges = [{ startUid = 100000; count = 65536; }];
subGidRanges = [{ startGid = 100000; count = 65536; }];
subUidRanges = [
{
startUid = 100000;
count = 65536;
}
];
subGidRanges = [
{
startGid = 100000;
count = 65536;
}
];
};
programs.appimage = {
@@ -126,5 +150,8 @@
package = pkgs.usbmuxd2;
};
nix.settings.experimental-features = [ "nix-command" "flakes" ];
}
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
}