nixos-config/flake.nix

47 lines
1.2 KiB
Nix
Raw Normal View History

2024-04-17 05:52:14 +05:00
{
description = "My system configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2024-05-01 15:39:14 +03:00
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.05";
2024-08-26 22:10:44 +03:00
sops-nix.url = "github:Mic92/sops-nix";
2024-08-27 13:53:48 +03:00
stylix.url = "github:danth/stylix";
2024-09-10 13:46:44 +03:00
ayugram-desktop.url = "github:kaeeraa/ayugram-desktop/release?submodules=1";
2024-04-17 05:52:14 +05:00
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, nixpkgs-stable, home-manager, ... }@inputs:
let
system = "x86_64-linux";
in {
2024-08-25 19:10:00 +03:00
nixosConfigurations.Rias = nixpkgs.lib.nixosSystem {
2024-04-17 05:52:14 +05:00
specialArgs = {
pkgs-stable = import nixpkgs-stable {
inherit system;
config.allowUnfree = true;
};
inherit inputs system;
};
modules = [
2024-08-25 19:10:00 +03:00
./nixos/hosts/Rias/configuration.nix
2024-04-17 05:52:14 +05:00
];
};
2024-04-22 10:20:35 +03:00
homeConfigurations.sweetbread = home-manager.lib.homeManagerConfiguration {
2024-04-17 05:52:14 +05:00
pkgs = nixpkgs.legacyPackages.${system};
2024-08-26 22:10:44 +03:00
modules = [
./home-manager/home.nix
inputs.sops-nix.homeManagerModules.sops
2024-08-27 13:53:48 +03:00
inputs.stylix.homeManagerModules.stylix
2024-08-26 22:10:44 +03:00
];
2024-04-17 05:52:14 +05:00
};
};
}