summaryrefslogtreecommitdiff
path: root/configuration.nix
diff options
context:
space:
mode:
authorK900 <me@0upti.me>2023-09-29 20:51:59 +0300
committerK900 <me@0upti.me>2023-09-29 21:53:26 +0300
commite6b1129f9d3c2010fba981307c72ad7d15717d3d (patch)
tree3b9665fb65d89186696bf042341989f4a2a72b70 /configuration.nix
parent65ba7e6fb468fe67bff3751d205926bb05e0baff (diff)
feat: rewrite tarball generation to use proper nixos-install + nixos-enter
Supersedes #243.
Diffstat (limited to 'configuration.nix')
-rw-r--r--configuration.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/configuration.nix b/configuration.nix
deleted file mode 100644
index 789cf59..0000000
--- a/configuration.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ pkgs, ... }:
-
-let
- nixos-wsl = import ./default.nix;
-in
-{
- imports = [
- nixos-wsl.nixosModules.wsl
- ];
-
- wsl = {
- enable = true;
- wslConf.automount.root = "/mnt";
- defaultUser = "nixos";
- startMenuLaunchers = true;
-
- # Enable native Docker support
- # docker-native.enable = true;
-
- # Enable integration with Docker Desktop (needs to be installed)
- # docker-desktop.enable = true;
-
- };
-
- # Enable nix flakes
- nix.package = pkgs.nixFlakes;
- nix.extraOptions = ''
- experimental-features = nix-command flakes
- '';
-
- system.stateVersion = "23.05";
-}