nix-config/hosts/laptop1/configuration.nix
smayzy 4a049d94ce
All checks were successful
nix flake show / show-flake (push) Successful in 29s
modularize flatpaks
2025-07-20 16:16:40 +02:00

35 lines
547 B
Nix

{ inputs, config, pkgs, lib, ... }:
{
imports =
[
../common/common.nix
./hardware-configuration.nix
];
smayzy = {
laptop.enable = true;
hyprland.enable = true;
kde.enable = true;
};
home-manager = {
extraSpecialArgs = {
inherit inputs;
smayzy = config.smayzy;
};
users = {
smayzy = import ./home.nix;
};
backupFileExtension = "backup";
};
system.stateVersion = "24.11";
networking.hostName = "laptop1";
environment.systemPackages = with pkgs; [
];
}