mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-30 23:50:12 +01:00
19 lines
230 B
Nix
19 lines
230 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./modules
|
|
(import ./hardware "vinzenz-lpt")
|
|
];
|
|
|
|
config = {
|
|
my.gnome.enable = true;
|
|
my.home.vinzenz.enable = true;
|
|
|
|
services.flatpak.enable = true;
|
|
};
|
|
}
|