This commit is contained in:
Andreas Zweili 2021-12-22 16:53:44 +01:00
parent 40cbf04a8e
commit d3f7d0d434
5 changed files with 8 additions and 5 deletions

View File

@ -8,7 +8,7 @@ in
imports = [ imports = [
(import "${home-manager}/nixos") (import "${home-manager}/nixos")
]; ];
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.users.andreas = { home-manager.users.andreas = {
imports = [ imports = [

View File

@ -6,7 +6,8 @@
{ {
imports = imports =
[ # Include the results of the hardware scan. [
# Include the results of the hardware scan.
../../common/desktop.nix ../../common/desktop.nix
../bluetooth.nix ../bluetooth.nix
./hardware-configuration.nix ./hardware-configuration.nix

View File

@ -6,7 +6,8 @@
{ {
imports = imports =
[ # Include the results of the hardware scan. [
# Include the results of the hardware scan.
../../common/desktop.nix ../../common/desktop.nix
../bluetooth.nix ../bluetooth.nix
./hardware-configuration.nix ./hardware-configuration.nix

View File

@ -6,7 +6,8 @@
{ {
imports = imports =
[ # Include the results of the hardware scan. [
# Include the results of the hardware scan.
../../common/desktop.nix ../../common/desktop.nix
./hardware-configuration.nix ./hardware-configuration.nix
]; ];

View File

@ -14,7 +14,7 @@
boot.kernelModules = [ ]; boot.kernelModules = [ ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = { fileSystems."/" = {
device = "/dev/disk/by-label/nixos"; device = "/dev/disk/by-label/nixos";
fsType = "ext4"; fsType = "ext4";
}; };