updates but nvidia broken

This commit is contained in:
Julian Sutter 2024-03-18 13:21:37 -07:00
parent ba441bcad7
commit f280e25b81
4 changed files with 9 additions and 10 deletions

12
flake.lock generated
View file

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1707683400, "lastModified": 1710714957,
"narHash": "sha256-Zc+J3UO1Xpx+NL8UB6woPHyttEy9cXXtm+0uWwzuYDc=", "narHash": "sha256-eZCxuF58YWgaJMMRrn8oRkwRhxooe5kBS/s2wRVr9PA=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "21b078306a2ab68748abf72650db313d646cf2ca", "rev": "7b3fca5adcf6c709874a8f2e0c364fe9c58db989",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -22,11 +22,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1707546158, "lastModified": 1710631334,
"narHash": "sha256-nYYJTpzfPMDxI8mzhQsYjIUX+grorqjKEU9Np6Xwy/0=", "narHash": "sha256-rL5LSYd85kplL5othxK5lmAtjyMOBg390sGBTb3LRMM=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "d934204a0f8d9198e1e4515dd6fec76a139c87f0", "rev": "c75037bbf9093a2acb617804ee46320d6d1fea5a",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -20,7 +20,6 @@
services.pcscd.enable = true; services.pcscd.enable = true;
programs.gnupg.agent = { programs.gnupg.agent = {
enable = true; enable = true;
pinentryFlavor = "qt";
enableSSHSupport = true; enableSSHSupport = true;
}; };

View file

@ -53,8 +53,8 @@
}; };
system.stateVersion = "24.11"; system.stateVersion = "24.11";
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
nixpkgs.config.nvidia.acceptLicense = true; # nixpkgs.config.nvidia.acceptLicense = true;
nixpkgs.config.nvidia.libsOnly = false; # nixpkgs.config.nvidia.libsOnly = false;
# Location & internationalisation # Location & internationalisation
time.timeZone = "America/Los_Angeles"; time.timeZone = "America/Los_Angeles";

View file

@ -108,7 +108,7 @@ in
programs.zsh = { programs.zsh = {
enable = true; enable = true;
enableCompletion = false; # enabled in oh-my-zsh enableCompletion = false; # enabled in oh-my-zsh
enableAutosuggestions = true; autosuggestion.enable = true;
initExtra = '' initExtra = ''
test -f ~/.dir_colors && eval $(dircolors ~/.dir_colors) test -f ~/.dir_colors && eval $(dircolors ~/.dir_colors)
''; '';