mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 12:51:34 +01:00
12 lines
204 B
Nix
12 lines
204 B
Nix
{ self, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
../user.nix
|
|
"${self}/users/home-manager.nix"
|
|
];
|
|
|
|
users.users.seb.shell = pkgs.zsh;
|
|
programs.zsh.enable = true;
|
|
|
|
home-manager.users.seb = ./home.nix;
|
|
}
|