added disko as module

This commit is contained in:
twoneis 2024-05-06 19:07:49 +02:00
parent f2e8dccca4
commit 0636e412c0
4 changed files with 8 additions and 18 deletions

View file

@ -1,6 +1,7 @@
{ pkgs, ... }: { { pkgs, ... }: {
imports = [ imports = [
./hardware-config.nix ./hardware-config.nix
./disko.nix
./nvidia.nix ./nvidia.nix
./options.nix ./options.nix
]; ];

View file

@ -8,23 +8,6 @@
boot.kernelModules = [ "kvm-amd" ]; boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/95b15244-c97c-42a5-9be1-ed5df6872dcb";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/BF87-B3DE";
fsType = "vfat";
};
fileSystems."/ext" = {
device = "/dev/disk/by-uuid/31608388-1043-47a0-a5da-e92250e821f8";
fsType = "ext4";
};
swapDevices =[ { device = "/dev/disk/by-uuid/b6445ced-1cc2-461f-a81f-6e8409c10f48"; } ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's # (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction # still possible to use this option, but it's recommended to use it in conjunction

View file

@ -21,6 +21,11 @@
url = "github:sodiboo/niri-flake"; url = "github:sodiboo/niri-flake";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
outputs = inputs: import ./outputs.nix inputs; outputs = inputs: import ./outputs.nix inputs;

View file

@ -1,10 +1,11 @@
{ nixpkgs, home-manager, nixos-hardware, nur, niri, ... }@inputs: { { nixpkgs, home-manager, nixos-hardware, nur, niri, disko, ... }@inputs: {
nixosConfigurations = let nixosConfigurations = let
clientModules = [ clientModules = [
./modules/system ./modules/system
./options.nix ./options.nix
niri.nixosModules.niri niri.nixosModules.niri
disko.nixosModules.disko
home-manager.nixosModules.home-manager { home-manager.nixosModules.home-manager {
nixpkgs.overlays = [ nixpkgs.overlays = [
nur.overlay nur.overlay