nix-conf/flake.nix

94 lines
2.7 KiB
Nix
Raw Normal View History

2023-02-20 16:38:19 +01:00
{
2023-05-19 12:08:06 +02:00
description = "jopejoe1 NixOS configuration";
inputs = {
2023-05-19 19:49:08 +02:00
nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable;
2023-02-20 16:38:19 +01:00
nur.url = github:nix-community/NUR;
2023-05-19 12:08:06 +02:00
home-manager= {
2023-02-20 16:38:19 +01:00
url = github:nix-community/home-manager;
inputs.nixpkgs.follows = "nixpkgs";
};
2023-05-19 20:58:48 +02:00
prismlauncher = {
2023-05-19 21:08:33 +02:00
url = github:PrismLauncher/PrismLauncher;
2023-05-19 20:58:48 +02:00
inputs.nixpkgs.follows = "nixpkgs";
};
2023-05-19 21:08:33 +02:00
nixos-hardware.url = github:NixOS/nixos-hardware;
2023-05-19 21:51:53 +02:00
tela-icon-theme = {
2023-05-19 22:27:09 +02:00
url = github:vinceliuice/Tela-icon-theme;
flake = false;
};
prism-patch = {
url = "https://patch-diff.githubusercontent.com/raw/PrismLauncher/PrismLauncher/pull/907.patch";
2023-05-19 21:51:53 +02:00
flake = false;
};
2023-02-20 16:38:19 +01:00
};
2023-02-23 20:34:35 +01:00
2023-05-19 12:08:06 +02:00
outputs = inputs@{
self,
nixpkgs,
home-manager,
2023-05-19 20:55:50 +02:00
prismlauncher,
2023-05-19 20:56:21 +02:00
nur,
2023-05-19 21:08:33 +02:00
nixos-hardware,
2023-05-19 12:08:06 +02:00
...
}: {
2023-05-16 14:55:15 +02:00
nixosConfigurations.kami = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
2023-05-19 12:08:06 +02:00
specialArgs = inputs;
2023-05-19 12:14:41 +02:00
modules = [
./systems/kami
2023-05-19 20:53:02 +02:00
./modules/audio
./modules/bluetooth
./modules/local
./modules/nix
./modules/plasma
./modules/printing
./modules/ssh
./modules/steam
./modules/users/jopejoe1
2023-05-19 21:08:33 +02:00
nixos-hardware.nixosModules.common-cpu-intel
nixos-hardware.nixosModules.common-gpu-intel
nixos-hardware.nixosModules.common-gpu-nvidia
nixos-hardware.nixosModules.common-pc
nixos-hardware.nixosModules.common-hidpi
nixos-hardware.nixosModules.common-pc-ssd
2023-05-19 21:34:43 +02:00
nur.nixosModules.nur
home-manager.nixosModules.home-manager
2023-05-19 12:20:38 +02:00
{
nixpkgs = {
config.allowUnfree = true;
2023-05-19 21:51:53 +02:00
overlays = [
prismlauncher.overlays.default
nur.overlay
(self: super: {
tela-icon-theme = super.tela-icon-theme.overrideAttrs (old: {
src = inputs.tela-icon-theme;
});
2023-05-19 22:27:09 +02:00
prismlauncher = super.prismlauncher.overrideAttrs (old: {
patches = (old.patches or []) ++ [
inputs.prism-patch
];
});
2023-05-19 21:51:53 +02:00
})
];
2023-05-19 12:20:38 +02:00
};
2023-05-19 21:34:43 +02:00
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
};
2023-05-19 12:39:26 +02:00
system.stateVersion = "23.05";
2023-05-19 21:34:43 +02:00
nix.registry = {
home-manager.flake = home-manager;
nixos-hardware.flake = nixos-hardware;
nur.flake = nur;
nixpkgs.flake = nixpkgs;
};
nix.nixPath = [ "nixpkgs=/etc/channels/nixpkgs" "nixos-config=/etc/nixos/configuration.nix" "/nix/var/nix/profiles/per-user/root/channels" ];
2023-05-19 12:20:38 +02:00
}
2023-05-19 12:14:41 +02:00
];
2023-02-22 17:56:24 +01:00
};
2023-05-16 14:55:15 +02:00
};
2023-02-20 16:38:19 +01:00
}