feat: adding the home-manager configuration

This commit is contained in:
Raphael 2025-02-03 14:10:50 +01:00
parent c95811536f
commit ecfe399666

View file

@ -2,11 +2,15 @@
description = "NixOS Configuration";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, flake-utils, ... }@inputs:
outputs = { self, nixpkgs, flake-utils, home-manager,... }@inputs:
let
pkgs = import nixpkgs {
config.allowUnfree = true;
@ -14,7 +18,9 @@
in {
nixosConfigurations."nixos-fix" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./hosts/fix/configuration.nix ];
modules = [
./hosts/fix/configuration.nix
];
};
};
}