Delete flake.nix
This commit is contained in:
parent
0560427753
commit
fc450cff8d
1 changed files with 0 additions and 29 deletions
29
flake.nix
29
flake.nix
|
|
@ -1,29 +0,0 @@
|
|||
# flake.nix
|
||||
{
|
||||
description = "Fred's NixOS Flake";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager/master";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, home-manager, ... }: {
|
||||
nixosConfigurations.FredOS-Gaming = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./hosts/FredOS-Gaming.nix # Main host config
|
||||
./hosts/FredOS-Macbook.nix # Macbook config
|
||||
./common.nix
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.fred = import ./home.nix; # You'll need to create this
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue