feat: add nvidia gpu driver for marr

This commit is contained in:
Nydragon 2024-05-27 23:01:51 +09:00
parent d88c4b4f5d
commit e5d197b0c5
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209
2 changed files with 28 additions and 3 deletions

17
flake.lock generated
View file

@ -20,6 +20,22 @@
"type": "github" "type": "github"
} }
}, },
"nixos-hardware": {
"locked": {
"lastModified": 1716798306,
"narHash": "sha256-s8+OhT1WSPMoqbTawT30hj4NVMg+w03/a+2HVqcNhY0=",
"owner": "NixOS",
"repo": "nixos-hardware",
"rev": "9a20e17a73b052d6be912adcee220cb483477094",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "master",
"repo": "nixos-hardware",
"type": "github"
}
},
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1715534503, "lastModified": 1715534503,
@ -39,6 +55,7 @@
"root": { "root": {
"inputs": { "inputs": {
"home-manager": "home-manager", "home-manager": "home-manager",
"nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
} }
} }

View file

@ -3,7 +3,7 @@
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
home-manager = { home-manager = {
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
@ -11,7 +11,12 @@
}; };
outputs = outputs =
inputs@{ self, nixpkgs, ... }: inputs@{
self,
nixpkgs,
nixos-hardware,
...
}:
let let
inherit (self) outputs; inherit (self) outputs;
@ -28,7 +33,10 @@
nixosConfigurations = { nixosConfigurations = {
marr = lib.nixosSystem { marr = lib.nixosSystem {
inherit system; inherit system;
modules = [ ./hosts/marr/configuration.nix ]; modules = [
./hosts/marr/configuration.nix
nixos-hardware.nixosModules.dell-xps-15-9510-nvidia
];
specialArgs = { specialArgs = {
inherit inherit
inputs inputs