nixos: gen 116 @ nix-pad — 2026-07-24 18:27
26.05.20260717.293d6ab (Yarara)
This commit is contained in:
@@ -9,23 +9,34 @@
|
||||
inputs.flake-utils.follows = "flake-utils";
|
||||
};
|
||||
|
||||
niri.url = "github:sodiboo/niri-flake";
|
||||
|
||||
dms = {
|
||||
url = "github:AvengeMedia/DankMaterialShell/stable";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager/release-26.05";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils, home-manager, ... }: {
|
||||
outputs = inputs@{ self, nixpkgs, flake-utils, home-manager, niri, dms, ... }: {
|
||||
nixosConfigurations = {
|
||||
thinkpad = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
|
||||
specialArgs = { inherit inputs; };
|
||||
|
||||
modules = [
|
||||
./hosts/thinkpad/default.nix
|
||||
niri.nixosModules.niri
|
||||
|
||||
home-manager.nixosModules.home-manager {
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.extraSpecialArgs = { inherit inputs; };
|
||||
home-manager.users.jashton = import ./home/jashton.nix;
|
||||
}
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user