Upgrade to 24.05, add chromium, start debug HA video drivers

This commit is contained in:
Benson Chu 2024-09-08 13:33:51 -05:00
parent 1d965a7cb2
commit 84c9619984
3 changed files with 26 additions and 13 deletions

View file

@ -54,6 +54,12 @@ in
nscd.enable = true; nscd.enable = true;
blueman.enable = true; blueman.enable = true;
xrdp = {
enable = true;
defaultWindowManager = "startplasma-x11";
openFirewall = true;
};
pipewire = { pipewire = {
enable = true; enable = true;
alsa.enable = true; alsa.enable = true;
@ -66,6 +72,7 @@ in
displayManager.lightdm.enable = true; displayManager.lightdm.enable = true;
displayManager.startx.enable = true; displayManager.startx.enable = true;
desktopManager.plasma5.enable = true; desktopManager.plasma5.enable = true;
desktopManager.mate.enable = true;
displayManager.defaultSession = "plasmawayland"; displayManager.defaultSession = "plasmawayland";
displayManager.autoLogin.enable = true; displayManager.autoLogin.enable = true;
displayManager.autoLogin.user = "hodgson"; displayManager.autoLogin.user = "hodgson";
@ -164,12 +171,14 @@ in
emacs emacs
tmux tmux
unstablePkgs.signal-desktop unstablePkgs.signal-desktop
gcc
# emacs dependencies # emacs dependencies
ispell ispell
ripgrep ripgrep
cmake cmake
gnumake gnumake
libtool
# browsers # browsers
google-chrome google-chrome
@ -198,5 +207,9 @@ in
networking.firewall.allowedUDPPorts = [ ]; networking.firewall.allowedUDPPorts = [ ];
networking.firewall.enable = true; networking.firewall.enable = true;
networking.hosts = {
"10.0.0.142" = ["BRWBCF4D445BCC3.local"];
};
system.stateVersion = "23.11"; # Did you read the comment? system.stateVersion = "23.11"; # Did you read the comment?
} }

View file

@ -7,32 +7,32 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1715381426, "lastModified": 1720042825,
"narHash": "sha256-wPuqrAQGdv3ISs74nJfGb+Yprm23U/rFpcHFFNWgM94=", "narHash": "sha256-A0vrUB6x82/jvf17qPCpxaM+ulJnD8YZwH9Ci0BsAzE=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "ab5542e9dbd13d0100f8baae2bc2d68af901f4b4", "rev": "e1391fb22e18a36f57e6999c7a9f966dc80ac073",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-community", "owner": "nix-community",
"ref": "release-23.11", "ref": "release-24.05",
"repo": "home-manager", "repo": "home-manager",
"type": "github" "type": "github"
} }
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1716361217, "lastModified": 1725407940,
"narHash": "sha256-mzZDr00WUiUXVm1ujBVv6A0qRd8okaITyUp4ezYRgc4=", "narHash": "sha256-tiN5Rlg/jiY0tyky+soJZoRzLKbPyIdlQ77xVgREDNM=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "46397778ef1f73414b03ed553a3368f0e7e33c2f", "rev": "6f6c45b5134a8ee2e465164811e451dcb5ad86e3",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nixos", "owner": "nixos",
"ref": "nixos-23.11", "ref": "nixos-24.05",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }
@ -46,11 +46,11 @@
}, },
"unstable": { "unstable": {
"locked": { "locked": {
"lastModified": 1724224976, "lastModified": 1725432240,
"narHash": "sha256-Z/ELQhrSd7bMzTO8r7NZgi9g5emh+aRKoCdaAv5fiO0=", "narHash": "sha256-+yj+xgsfZaErbfYM3T+QvEE2hU7UuE+Jf0fJCJ8uPS0=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "c374d94f1536013ca8e92341b540eba4c22f9c62", "rev": "ad416d066ca1222956472ab7d0555a6946746a80",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -2,10 +2,10 @@
description = "NixOS configuration"; description = "NixOS configuration";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11"; nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
unstable.url = "github:nixos/nixpkgs/nixos-unstable"; unstable.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = { home-manager = {
url = "github:nix-community/home-manager/release-23.11"; url = "github:nix-community/home-manager/release-24.05";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
}; };