nixos-configuration/flake.nix

84 lines
2.3 KiB
Nix
Raw Normal View History

2023-02-11 01:24:46 +00:00
{
inputs = {
lix = {
url = "git+https://git@git.lix.systems/lix-project/lix?ref=refs/tags/2.90-beta.1";
flake = false;
};
lix-module = {
url = "git+https://git.lix.systems/lix-project/nixos-module";
inputs.lix.follows = "lix";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-11-29 03:49:40 +00:00
nixpkgs.url = "nixpkgs/nixos-23.11";
2023-11-24 03:16:35 +00:00
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
2023-02-11 01:24:46 +00:00
};
outputs = { self, lix-module, nixpkgs, nixos-hardware, ... }@attrs: {
2023-02-11 02:27:39 +00:00
nixosConfigurations.firestar = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = attrs;
modules = [
lix-module.nixosModules.default
nixos-hardware.nixosModules.common-gpu-amd
2023-02-11 02:27:39 +00:00
./desktop.nix
2023-08-29 20:11:22 +00:00
./firestar
./fonts.nix
./lix-cache.nix
2023-08-29 20:11:22 +00:00
./packages.nix
(import ./user.nix {
name = "Aode";
authorizedKeys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILojJubDCB2Mc4fw2mdp5Lzg5mTifXwawIVuyb3vr4lB asonix@graystripe"
];
})
{
services.openssh = {
enable = true;
settings.PermitRootLogin = "no";
};
}
2023-02-11 02:27:39 +00:00
];
};
2023-02-11 01:24:46 +00:00
nixosConfigurations.graystripe = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = attrs;
modules = [
lix-module.nixosModules.default
2023-11-24 03:16:35 +00:00
nixos-hardware.nixosModules.framework-11th-gen-intel
2023-02-11 01:49:00 +00:00
./desktop.nix
./fonts.nix
2023-02-11 01:40:39 +00:00
./graystripe
./lix-cache.nix
2023-02-11 01:49:00 +00:00
./packages.nix
(import ./user.nix { name = "Tavi"; })
2023-08-29 20:11:22 +00:00
{
services.openssh = {
enable = true;
settings.PermitRootLogin = "no";
};
}
2023-02-11 01:24:46 +00:00
];
};
2024-02-19 17:02:55 +00:00
nixosConfigurations.squirrelflight = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = attrs;
modules = [
lix-module.nixosModules.default
2024-04-23 18:56:05 +00:00
nixos-hardware.nixosModules.framework-16-7040-amd
2024-02-19 17:02:55 +00:00
./desktop.nix
./fonts.nix
./lix-cache.nix
2024-02-19 17:02:55 +00:00
./packages.nix
./squirrelflight
2024-02-19 17:02:55 +00:00
(import ./user.nix { name = "Tavi"; })
{
services.openssh = {
enable = true;
settings.PermitRootLogin = "no";
};
}
];
};
2023-02-11 01:24:46 +00:00
};
}