modi(host@doloro-wsl): added fish

This commit is contained in:
2025-10-16 10:46:36 +00:00
parent 54335b335d
commit 63b7817ba9
2 changed files with 19 additions and 6 deletions

View File

@@ -13,16 +13,21 @@
# ./modules/chromium/home.nix # ./modules/chromium/home.nix
#./modules/neovim/home.nix #./modules/neovim/home.nix
# ./modules/stylix/home.nix # ./modules/stylix/home.nix
../../modules/nixvim/home.nix #../../modules/nixvim/home.nix
../../modules/tmux/home.nix #../../modules/tmux/home.nix
../../modules/theme/home.nix #../../modules/theme/home.nix
# ./modules/spicetify/home.nix # ./modules/spicetify/home.nix
# ./modules/obs/home.nix # ./modules/obs/home.nix
# ./modules/blender/home.nix # ./modules/blender/home.nix
../../modules/fish/home.nix #../../modules/fish/home.nix
# ./modules/ytm/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 # Home Manager needs a bit of information about you and the paths it should
# manage. # manage.
home.username = "doloro"; home.username = "doloro";
@@ -53,7 +58,6 @@
# spotify # spotify
# pavucontrol # pavucontrol
lazygit lazygit
btop
sops sops
]; ];
# sops.age.keyFile = "/home/doloro/.config/sops/age/key.txt"; # sops.age.keyFile = "/home/doloro/.config/sops/age/key.txt";

View File

@@ -1,13 +1,18 @@
{ {
inputs, inputs,
pkgs,
lib, lib,
user, user,
... ...
}: }:
{ {
modules = {
fish.enable = true;
};
imports = [ imports = [
inputs.nixos-wsl.nixosModules.default inputs.nixos-wsl.nixosModules.default
]; ];
# rocmSupport = false;
networking.dhcpcd.enable = lib.mkOverride 0 false; networking.dhcpcd.enable = lib.mkOverride 0 false;
boot.loader.grub.enable = lib.mkOverride 0 false; boot.loader.grub.enable = lib.mkOverride 0 false;
wsl = { wsl = {
@@ -18,6 +23,10 @@
startMenuLaunchers = true; startMenuLaunchers = true;
usbip.enable = true; usbip.enable = true;
}; };
nix.settings = {
experimental-features = "nix-command flakes";
};
nixpkgs.config.allowUnsupportedSystem = true;
systemd.services."user-runtime-dir@" = { systemd.services."user-runtime-dir@" = {
overrideStrategy = "asDropin"; overrideStrategy = "asDropin";
unitConfig.ConditionPathExists = "!/run/user/%i"; unitConfig.ConditionPathExists = "!/run/user/%i";