diff options
author | sils <sils@sils.li> | 2023-01-20 18:45:09 +0100 |
---|---|---|
committer | sils <sils@sils.li> | 2023-01-20 18:45:09 +0100 |
commit | 2343104396e086bd763d994c2372dbfa03ccb85f (patch) | |
tree | 2ed068483e1c37d109d0955b8b44bf3c3c493835 /sysconf/thinklappi.nix | |
parent | Fix: declare xdg-portal (diff) | |
download | nix-config-2343104396e086bd763d994c2372dbfa03ccb85f.tar.gz nix-config-2343104396e086bd763d994c2372dbfa03ccb85f.zip |
Structure: Move configuration.nix into host specific file
This ensures that nixos-rebuild uses flakes and will probably have advantages in case I'll ever want to deploy multiple machines using this config.
Diffstat (limited to '')
-rw-r--r-- | sysconf/thinklappi.nix (renamed from configuration.nix) | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/configuration.nix b/sysconf/thinklappi.nix index 819cec8..4904ffd 100644 --- a/configuration.nix +++ b/sysconf/thinklappi.nix @@ -4,20 +4,20 @@ ... }: let compiledLayout = pkgs.runCommand "keyboard-layout" {} '' - ${pkgs.xorg.xkbcomp}/bin/xkbcomp ${./files/neoqwertz.xkb} $out + ${pkgs.xorg.xkbcomp}/bin/xkbcomp ${../files/neoqwertz.xkb} $out ''; in { imports = [ - ./hardware/basesystem.nix - ./env.nix - ./nix.nix - ./packages.nix - ./users.nix - ./zsh.nix - ./flatpak.nix # Mainly for minecraft + ../hardware/basesystem.nix + ../env.nix + ../nix.nix + ../packages.nix + ../users.nix + ../zsh.nix + ../flatpak.nix # Mainly for minecraft # Desktop Environment to use - ./desktop/plasma.nix + ../desktop/plasma.nix ]; services = { |