mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
moved files to make more sense and added experimental desktop configuration
This commit is contained in:
parent
22c5b6f826
commit
50fae0b2eb
38 changed files with 533 additions and 191 deletions
19
flake.nix
19
flake.nix
|
|
@ -1,13 +1,12 @@
|
|||
{
|
||||
description = "testing";
|
||||
description = "my personal configurations";
|
||||
inputs = {
|
||||
nixpkgs.url = "nixpkgs/nixos-unstable";
|
||||
home-manager.url = "github:nix-community/home-manager/master";
|
||||
home-manager.inputs.nixkpkgs.follows = "nixpkgs";
|
||||
nur.url = "github:nix-community/NUR";
|
||||
};
|
||||
|
||||
outputs = { nixpkgs, home-manager, nur, ... }:
|
||||
outputs = { nixpkgs, home-manager, ... }:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = import nixpkgs {
|
||||
|
|
@ -28,8 +27,7 @@
|
|||
gerg = home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
modules = [
|
||||
nur.nixosModules.nur
|
||||
./home-manager.nix
|
||||
./home-manager/home-manager.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
@ -37,8 +35,15 @@
|
|||
gerg-laptop = lib.nixosSystem {
|
||||
inherit system pkgs;
|
||||
modules = [
|
||||
nur.nixosModules.nur
|
||||
./configuration.nix
|
||||
./hardware-configuration.nix
|
||||
./systems/gerg-laptop.nix
|
||||
];
|
||||
};
|
||||
gerg-desktop = lib.nixosSystem {
|
||||
inherit system pkgs;
|
||||
modules = [
|
||||
./hardware-configuration.nix
|
||||
./systems/gerg-desktop.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue