From 63b7817ba9b612d7d96e45f117687c9a8efa2606 Mon Sep 17 00:00:00 2001 From: Doloro1978 Date: Thu, 16 Oct 2025 10:46:36 +0000 Subject: [PATCH] modi(host@doloro-wsl): added fish --- nix/hosts/doloro-wsl/home.nix | 16 ++++++++++------ nix/hosts/doloro-wsl/nixos.nix | 9 +++++++++ 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/nix/hosts/doloro-wsl/home.nix b/nix/hosts/doloro-wsl/home.nix index 3bfff6c..3e3602d 100644 --- a/nix/hosts/doloro-wsl/home.nix +++ b/nix/hosts/doloro-wsl/home.nix @@ -13,16 +13,21 @@ # ./modules/chromium/home.nix #./modules/neovim/home.nix # ./modules/stylix/home.nix - ../../modules/nixvim/home.nix - ../../modules/tmux/home.nix - ../../modules/theme/home.nix + #../../modules/nixvim/home.nix + #../../modules/tmux/home.nix + #../../modules/theme/home.nix # ./modules/spicetify/home.nix # ./modules/obs/home.nix # ./modules/blender/home.nix - ../../modules/fish/home.nix + #../../modules/fish/home.nix # ./modules/ytm/home.nix - ../../overlays.nix + #../../overlays.nix ]; + modules = { + nixvim.enable = true; + tmux.enable = true; + fish.enable = true; + }; # Home Manager needs a bit of information about you and the paths it should # manage. home.username = "doloro"; @@ -53,7 +58,6 @@ # spotify # pavucontrol lazygit - btop sops ]; # sops.age.keyFile = "/home/doloro/.config/sops/age/key.txt"; diff --git a/nix/hosts/doloro-wsl/nixos.nix b/nix/hosts/doloro-wsl/nixos.nix index 24abf7d..d3eef7b 100644 --- a/nix/hosts/doloro-wsl/nixos.nix +++ b/nix/hosts/doloro-wsl/nixos.nix @@ -1,13 +1,18 @@ { inputs, + pkgs, lib, user, ... }: { + modules = { + fish.enable = true; + }; imports = [ inputs.nixos-wsl.nixosModules.default ]; + # rocmSupport = false; networking.dhcpcd.enable = lib.mkOverride 0 false; boot.loader.grub.enable = lib.mkOverride 0 false; wsl = { @@ -18,6 +23,10 @@ startMenuLaunchers = true; usbip.enable = true; }; + nix.settings = { + experimental-features = "nix-command flakes"; + }; + nixpkgs.config.allowUnsupportedSystem = true; systemd.services."user-runtime-dir@" = { overrideStrategy = "asDropin"; unitConfig.ConditionPathExists = "!/run/user/%i";