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 = [
(import "${home-manager}/nixos")
];
home-manager.useGlobalPkgs = true;
home-manager.users.andreas = {
imports = [

View File

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

View File

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

View File

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

View File

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