Files
nix/hosts/desktop/work/configuration.nix
Gustavo "Guz" L. de Mello 4c909faa20 feat: nix config helper
2024-01-07 15:45:18 -03:00

16 lines
211 B
Nix

{ config, pkgs, inputs, lib, ... }:
{
imports = [
../shared-configuration.nix
];
set-user.users = [
{
username = "guz";
shell = pkgs.zsh;
home = import ./home.nix;
}
];
}