feat: add nvidia gpu driver for marr
This commit is contained in:
parent
d88c4b4f5d
commit
e5d197b0c5
2 changed files with 28 additions and 3 deletions
17
flake.lock
generated
17
flake.lock
generated
|
@ -20,6 +20,22 @@
|
|||
"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": {
|
||||
"locked": {
|
||||
"lastModified": 1715534503,
|
||||
|
@ -39,6 +55,7 @@
|
|||
"root": {
|
||||
"inputs": {
|
||||
"home-manager": "home-manager",
|
||||
"nixos-hardware": "nixos-hardware",
|
||||
"nixpkgs": "nixpkgs"
|
||||
}
|
||||
}
|
||||
|
|
14
flake.nix
14
flake.nix
|
@ -3,7 +3,7 @@
|
|||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
|
||||
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
@ -11,7 +11,12 @@
|
|||
};
|
||||
|
||||
outputs =
|
||||
inputs@{ self, nixpkgs, ... }:
|
||||
inputs@{
|
||||
self,
|
||||
nixpkgs,
|
||||
nixos-hardware,
|
||||
...
|
||||
}:
|
||||
let
|
||||
inherit (self) outputs;
|
||||
|
||||
|
@ -28,7 +33,10 @@
|
|||
nixosConfigurations = {
|
||||
marr = lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [ ./hosts/marr/configuration.nix ];
|
||||
modules = [
|
||||
./hosts/marr/configuration.nix
|
||||
nixos-hardware.nixosModules.dell-xps-15-9510-nvidia
|
||||
];
|
||||
specialArgs = {
|
||||
inherit
|
||||
inputs
|
||||
|
|
Loading…
Add table
Reference in a new issue