nixos-configuration/vinzenz-lpt.nix

21 lines
265 B
Nix
Raw Normal View History

2023-09-02 14:53:25 +02:00
{
config,
lib,
pkgs,
...
}: {
imports = [
./modules
./hardware/vinzenz-lpt.nix
];
2023-09-02 14:53:25 +02:00
2023-09-09 14:57:55 +02:00
config = {
networking.hostName = "vinzenz-lpt";
2023-09-05 21:46:36 +02:00
2023-09-09 14:57:55 +02:00
my.gnome.enable = true;
2023-09-09 15:11:49 +02:00
my.home.vinzenz.enable = true;
2023-09-02 14:53:25 +02:00
2023-09-09 14:57:55 +02:00
services.flatpak.enable = true;
};
2023-04-04 21:41:44 +02:00
}