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