moving over to vscodium which is cringe tbh ngl
This commit is contained in:
parent
9dc30dc2a0
commit
cc7fd013b0
10 changed files with 162 additions and 39 deletions
30
flake.nix
30
flake.nix
|
|
@ -7,16 +7,32 @@
|
|||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, home-manager, ... }:
|
||||
outputs =
|
||||
{
|
||||
self,
|
||||
nixpkgs,
|
||||
home-manager,
|
||||
...
|
||||
}:
|
||||
let
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||
in
|
||||
{
|
||||
nixosConfigurations = {
|
||||
marty-pc = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [ ./configuration.nix ./marty-pc.nix ];
|
||||
{
|
||||
nixosConfigurations = {
|
||||
marty-pc = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./configuration.nix
|
||||
./marty-pc.nix
|
||||
];
|
||||
};
|
||||
marty-server = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64";
|
||||
modules = [
|
||||
./configuration.nix
|
||||
./marty-server.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue