chore: cleanup configs

This commit is contained in:
Den Afanasyev 2025-10-21 20:08:37 +03:00
parent 12416bc448
commit b202dc94f7
18 changed files with 493 additions and 332 deletions

View file

@ -5,18 +5,21 @@
# NixOS-WSL specific options are documented on the NixOS-WSL repository:
# https://github.com/nix-community/NixOS-WSL
{ config, lib, pkgs, ... }:
{ pkgs, ... }:
{
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
wsl.defaultUser = "duumxh";
wsl.interop.register = true;
programs.zsh.enable = true;
users.users.duumxh = {
isNormalUser = true;
shell = pkgs.zsh;
isNormalUser = true;
shell = pkgs.zsh;
};
# This value determines the NixOS release from which the default

View file

@ -1,9 +1,4 @@
{
config,
pkgs,
lib,
...
}:
{ ... }:
{
imports = [