nix-config/hosts/laptop1/configuration.nix
smayzy c440d392fa
All checks were successful
nix flake show / show-flake (push) Successful in 30s
mv obsidian to module
2025-07-17 15:16:34 +02:00

51 lines
843 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; [
libsForQt5.kdenlive
floorp
komikku
librewolf
inkscape
];
services.flatpak = {
enable = true;
update.onActivation = true;
packages = [
"com.github.tchx84.Flatseal"
"com.usebottles.bottles"
"it.mijorus.gearlever"
"com.google.AndroidStudio"
];
};
}