correct import paths

This commit is contained in:
Andreas Zweili 2022-01-10 20:25:50 +01:00
parent 011a686781
commit 36a5ad9a87
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{ pkgs, ... }:
let
username = import ../username.nix;
username = import ../../username.nix;
in
{
virtualisation.docker =

View File

@ -1,10 +1,10 @@
{ pkgs, ... }:
let
username = import ../username.nix;
username = import ../../username.nix;
in
{
imports = [
./cli
../../modules/cli
];
# Use the systemd-boot EFI boot loader.
@ -87,7 +87,7 @@ in
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = import ../version.nix;
system.stateVersion = import ../../version.nix;
}