Unstable starts building

This commit is contained in:
Daniel Flanagan 2024-07-29 10:01:59 -05:00
parent 48be7c8395
commit d2059a2845
6 changed files with 16 additions and 19 deletions

View file

@ -1190,7 +1190,7 @@
age-plugin-yubikey age-plugin-yubikey
bitwarden-cli bitwarden-cli
oath-toolkit oath-toolkit
bitwarden-desktop # bitwarden-desktop
]; ];
}; };

View file

@ -204,7 +204,7 @@
nix = { nix = {
nixPath = lib.mapAttrsToList (key: value: "${key}=${value.to.path}") config.nix.registry; nixPath = lib.mapAttrsToList (key: value: "${key}=${value.to.path}") config.nix.registry;
registry = lib.mapAttrs (_: value: {flake = value;}) flakeInputs; # registry = lib.mapAttrs (_: value: {flake = value;}) flakeInputs;
settings = { settings = {
trusted-users = ["root" "daniel"]; trusted-users = ["root" "daniel"];
@ -280,7 +280,7 @@
kubectl kubectl
stern stern
libresprite libresprite
logseq # logseq
audacity audacity
wol wol
shellcheck shellcheck
@ -397,10 +397,10 @@
xdg.portal.enable = true; xdg.portal.enable = true;
hardware = { hardware = {
opengl = { graphics = {
enable = true; enable = true;
driSupport32Bit = true; # driSupport32Bit = true;
driSupport = true; # driSupport = true;
}; };
}; };
environment = { environment = {

View file

@ -15,6 +15,8 @@ sudo nix run nixpkgs#ipmitool -- raw 0x30 0x30 0x02 0xff 0x00
pkgs, pkgs,
... ...
}: { }: {
system.stateVersion = "22.05";
home-manager.users.daniel.home.stateVersion = "24.05";
networking.hostName = "beefcake"; networking.hostName = "beefcake";
imports = [ imports = [
@ -470,7 +472,7 @@ sudo nix run nixpkgs#ipmitool -- raw 0x30 0x30 0x02 0xff 0x00
# stuff, too?) and get good transcoding performance # stuff, too?) and get good transcoding performance
# jellyfin hardware encoding # jellyfin hardware encoding
# hardware.opengl = { # hardware.graphics = {
# enable = true; # enable = true;
# extraPackages = with pkgs; [ # extraPackages = with pkgs; [
# intel-media-driver # intel-media-driver
@ -1073,7 +1075,4 @@ sudo nix run nixpkgs#ipmitool -- raw 0x30 0x30 0x02 0xff 0x00
to = 27100; to = 27100;
} }
]; ];
home-manager.users.daniel.home.stateVersion = "24.05";
system.stateVersion = "22.05";
} }

View file

@ -5,9 +5,10 @@
... ...
}: { }: {
system.stateVersion = "24.05"; system.stateVersion = "24.05";
home-manager.users.daniel.home.stateVersion = "24.05";
networking.hostName = "dragon"; networking.hostName = "dragon";
hardware.opengl.extraPackages = [ hardware.graphics.extraPackages = [
# pkgs.rocmPackages.clr.icd # pkgs.rocmPackages.clr.icd
pkgs.amdvlk pkgs.amdvlk

View file

@ -1,5 +1,8 @@
{pkgs, ...}: { {pkgs, ...}: {
system.stateVersion = "24.05";
home-manager.users.daniel.home.stateVersion = "24.11";
networking.hostName = "foxtrot"; networking.hostName = "foxtrot";
imports = [ imports = [
{ {
# laptop power management # laptop power management
@ -33,9 +36,6 @@
environment = { environment = {
systemPackages = with pkgs; [ systemPackages = with pkgs; [
spotify
discord
slack
godot_4 godot_4
fractal fractal
prismlauncher prismlauncher
@ -51,7 +51,6 @@
home-manager.users.daniel = { home-manager.users.daniel = {
home = { home = {
stateVersion = "24.05";
pointerCursor = { pointerCursor = {
size = 40; size = 40;
}; };
@ -90,7 +89,7 @@
# }; # };
}; };
hardware.opengl.extraPackages = [ hardware.graphics.extraPackages = [
# pkgs.rocmPackages.clr.icd # pkgs.rocmPackages.clr.icd
pkgs.amdvlk pkgs.amdvlk
@ -204,6 +203,4 @@
stardewValley stardewValley
7777 7777
]; ];
system.stateVersion = "24.05";
} }

View file

@ -132,7 +132,7 @@
# }; # };
# }; # };
hardware.opengl.driSupport32Bit = lib.mkForce false; hardware.graphics.driSupport32Bit = lib.mkForce false;
system.stateVersion = "24.05"; system.stateVersion = "24.05";
} }