commit be597f572641552b5757e43ccccec243498ed227
parent 10f33bee051d845945521395f805a8d108db29e6
Author: Milutin Popovic <milutin@popovic.xyz>
Date: Sat, 3 Jan 2026 20:36:03 +0000
fixes internal
Diffstat:
3 files changed, 11 insertions(+), 1 deletion(-)
diff --git a/modules/nix_settings.nix b/modules/nix_settings.nix
@@ -6,6 +6,7 @@
nix = {
enable = true;
package = pkgs.nix;
+ channel.enable = false;
settings = {
use-xdg-base-directories = true;
experimental-features = [ "nix-command" "flakes" ];
diff --git a/system/host/host-frame.nix b/system/host/host-frame.nix
@@ -51,6 +51,9 @@
"iommu=pt"
"rtc_cmos.use_acpi_alarm=1"
];
+ initrd.services.udev.rules = ''
+ SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="9A:C7:16:D6:89:36", NAME="wlan0"
+ '';
};
# netowrk
diff --git a/users/mika.nix b/users/mika.nix
@@ -7,6 +7,7 @@
...
}:
let
+
packageSets = import ../modules/packages.nix { inherit pkgs; };
link = config.lib.file.mkOutOfStoreSymlink;
@@ -36,7 +37,12 @@ in
../modules/firefox.nix
];
- nixpkgs.config.allowUnfree = true;
+ nixpkgs = if standalone
+ then {
+ config.allowUnfree = true;
+ } else
+ {};
+
home.packages = with packageSets; lib.flatten [
system
shell