blob: 44581aedbc96dd9ea3f6d6fca55c96d76b1a2e26 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{
description = "Petri's system";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-23.11";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager/release-23.11";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs@{ self, nixpkgs, nixpkgs-unstable, home-manager, nixos-hardware, ... }:
let
inherit (self) outputs;
vars = {
user = "petri";
name = "Petri Hienonen";
email= "petri.hienonen@gmail.com";
location = "$HOME/.nix";
terminal = "alacritty";
editor = "helix";
shell = "fish";
};
in {
nixosConfigurations = {
saarni = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {inherit inputs outputs vars nixpkgs-unstable; };
modules = [
./hosts/saarni
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
}
];
};
};
};
}
|