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