diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-06-23 22:51:53 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-06-23 22:51:53 -0400 |
| commit | 4107dbd75fc5acc289bb297892269a34fbf5d79d (patch) | |
| tree | 5b1a3a4c5acb83654f3cc27421b5220a400b24d9 | |
| parent | fix fonts config (diff) | |
| download | dotfiles-nix-4107dbd75fc5acc289bb297892269a34fbf5d79d.tar.gz dotfiles-nix-4107dbd75fc5acc289bb297892269a34fbf5d79d.tar.bz2 dotfiles-nix-4107dbd75fc5acc289bb297892269a34fbf5d79d.zip | |
move global cfg options into modules (remove /config)
| -rw-r--r-- | hosts/thinkpad/default.nix | 1 | ||||
| -rw-r--r-- | modules/default.nix | 1 | ||||
| -rw-r--r-- | modules/options.nix (renamed from config/default.nix) | 0 |
3 files changed, 1 insertions, 1 deletions
diff --git a/hosts/thinkpad/default.nix b/hosts/thinkpad/default.nix index e71a441..6810930 100644 --- a/hosts/thinkpad/default.nix +++ b/hosts/thinkpad/default.nix @@ -10,7 +10,6 @@ inputs.nixpkgs.lib.nixosSystem rec { specialArgs = {inherit inputs;}; modules = [ options - ../../config ../../home ../../modules ../../system diff --git a/modules/default.nix b/modules/default.nix index f478f50..534bd9f 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -5,5 +5,6 @@ ./gaming ./terminal ./virt + ./options.nix ]; } diff --git a/config/default.nix b/modules/options.nix index 53b59cb..53b59cb 100644 --- a/config/default.nix +++ b/modules/options.nix |