1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-02-26 09:12:06 +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 = [ imports = [
./packages.nix ./packages.nix

6
nixos/flake.lock generated
View file

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

View file

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

View file

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

View file

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