installer: remove unused reference to self

This commit is contained in:
Primrose 2025-06-12 10:33:46 +02:00
parent 0422a27504
commit 807fa3b4ee
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA

View file

@ -1,17 +1,14 @@
let
self = import ../../default.nix {};
#
# Note:
# I could've import the wifi configuration and use it here, but I haven't
# figured out an elegant (enough) way to do it while keeping my secrets
# encrypted.
#
in
{
#
# Note:
# I could've import the wifi configuration and use it here, but I haven't
# figured out an elegant (enough) way to do it while keeping my secrets
# encrypted.
#
{
pkgs,
modulesPath,
...
}: {
}: {
imports = [
../nixosModules/common/system-nixconf.nix
../nixosModules/extra/layouts
@ -54,4 +51,4 @@ in
programs.tmux.enable = true;
users.users.nixos.shell = pkgs.fish;
programs.fish.enable = true;
}
}