30 lines
759 B
Nix
30 lines
759 B
Nix
{ config, pkgs, nixpkgs-unstable, ... }:
|
|
|
|
{
|
|
imports = [
|
|
# Include the results of the hardware scan.
|
|
./hardware-configuration.nix
|
|
./cesium.nix
|
|
./common.nix
|
|
./mounts.nix
|
|
./services.nix
|
|
./users/sebastian.nix
|
|
];
|
|
|
|
# Home Manager configuration
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.useUserPackages = true;
|
|
home-manager.backupFileExtension = "backup";
|
|
|
|
# NixOS Version (don't change after first installation)
|
|
system.stateVersion = "25.11";
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
nixpkgs.overlays = [
|
|
(final: prev: {
|
|
rustdesk-flutter = nixpkgs-unstable.legacyPackages.${prev.stdenv.hostPlatform.system}.rustdesk-flutter;
|
|
})
|
|
];
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
}
|