This commit is contained in:
Steffen Illium 2025-04-21 16:48:42 +02:00
parent 43adf8ff81
commit 77e65e8ea2
3 changed files with 6 additions and 4 deletions

View File

@ -70,7 +70,6 @@
services.printing.enable = false;
# Enable sound.
sound.enable = false;
hardware.pulseaudio.enable = false;
# Enable touchpad support (enabled default in most desktopManager).
@ -80,6 +79,9 @@
security.sudo.wheelNeedsPassword = false;
users.defaultUserShell = pkgs.zsh;
# Allow unfree software and packages
nixpkgs.config.allowUnfree = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [

View File

@ -14,7 +14,7 @@
# Equivalent to --restart always
autoStart = true;
privileged = true;
# privileged = true;
volumes = [
"/sys:/host/sys"
"/var/run/docker.sock:/var/run/docker.sock"
@ -29,4 +29,4 @@
};
};
};
}
}

View File

@ -1,6 +1,6 @@
{ config, pkgs, ... }:
let
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/release-24.05.tar.gz";
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/release-24.11.tar.gz";
in
{
imports = [