1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-01-31 07:03:36 +00:00
This commit is contained in:
Rae 5e 2024-12-18 16:38:29 -05:00
parent 43e5446472
commit 21ea5fc6b6
6 changed files with 17 additions and 10 deletions

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, inputs, ... }:
{ pkgs, ... }:
{
imports = [
./packages.nix

View file

@ -67,11 +67,11 @@
"treefmt-nix": "treefmt-nix"
},
"locked": {
"lastModified": 1734497444,
"narHash": "sha256-BQbZ6BpPnPUNYB7+l6GziNU3YmmnU0jg09TzsIB4k18=",
"lastModified": 1734554871,
"narHash": "sha256-adKmMR20KSMrSQLAq3HbI1Y8DpgB2Fs4Nyiq9OpI/E4=",
"owner": "nix-community",
"repo": "NUR",
"rev": "b8b3fcbd00fbd6857acc41928c8246bad83dc7bd",
"rev": "52adbe40112836626fb9ed51e14d217e8b2f81c1",
"type": "github"
},
"original": {

View file

@ -20,6 +20,7 @@
specialArgs = { inherit inputs; };
modules = [
./hosts/qemu/configuration.nix
(import ./overlays)
];
};
};
@ -27,7 +28,10 @@
homeConfigurations.rae = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = { inherit inputs; };
modules = [ ./home.nix ];
modules = [
./home.nix
(import ./overlays)
];
};
};
}

View file

@ -1,8 +1,5 @@
{ pkgs, inputs, ... }:
{ pkgs, ... }:
{
# FIXME is this the correct way to manage this??
nixpkgs.overlays = [ inputs.nur.overlays.default ];
home = {
stateVersion = "24.11";
username = "rae";

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ ... }:
{
imports = [
./hardware-configuration.nix

View file

@ -0,0 +1,6 @@
{ inputs, ... }:
{
nixpkgs.overlays = [
inputs.nur.overlays.default
];
}