Add home manager configuraiton
This commit is contained in:
parent
92c095c8a5
commit
558ecfabd3
5 changed files with 90 additions and 26 deletions
|
@ -27,13 +27,16 @@
|
|||
|
||||
{
|
||||
imports = [
|
||||
# WSL support
|
||||
# WSL support
|
||||
inputs.nixos-wsl.nixosModules.default
|
||||
# Our modules
|
||||
(import ../../modules/base.nix {inherit inputs;})
|
||||
(import ../../modules/user.nix {inherit inputs;mutableUsers = true;})
|
||||
# Our modules
|
||||
(import ../../modules/base.nix { inherit inputs; })
|
||||
(import ../../modules/user.nix {
|
||||
inherit inputs;
|
||||
mutableUsers = true;
|
||||
})
|
||||
];
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
|
||||
wsl.enable = true;
|
||||
wsl.defaultUser = "nathan";
|
||||
|
@ -42,13 +45,13 @@
|
|||
"nix-command"
|
||||
"flakes"
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
neovim
|
||||
git
|
||||
tmux
|
||||
nixfmt-rfc-style
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
neovim
|
||||
git
|
||||
tmux
|
||||
nixfmt-rfc-style
|
||||
];
|
||||
|
||||
# This value determines the NixOS release from which the default
|
||||
# settings for stateful data, like file locations and database versions
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue