mirror of
https://github.com/Noratrieb/nixos.git
synced 2026-01-14 19:55:08 +01:00
9 lines
115 B
Nix
9 lines
115 B
Nix
{ pkgs, ... }: {
|
|
imports = [
|
|
./home.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [ krita ];
|
|
|
|
is-laptop = true;
|
|
}
|