mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-01-31 07:03:36 +00:00
~
This commit is contained in:
parent
c1f4cb856e
commit
35392f6785
3 changed files with 15 additions and 10 deletions
|
@ -1,5 +1,7 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, inputs, ... }:
|
||||||
{
|
{
|
||||||
|
nixpkgs.overlays = import ../overlays.nix;
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
stateVersion = "24.11";
|
stateVersion = "24.11";
|
||||||
username = "rae";
|
username = "rae";
|
||||||
|
|
|
@ -7,15 +7,7 @@
|
||||||
nix.settings.experimental-features = ["nix-command" "flakes"];
|
nix.settings.experimental-features = ["nix-command" "flakes"];
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
overlays = [
|
overlays = import ../overlays.nix;
|
||||||
inputs.nur.overlays.default
|
|
||||||
inputs.fenix.overlays.default
|
|
||||||
(final: prev: {
|
|
||||||
unstable = import inputs.nixpkgs-unstable {
|
|
||||||
system = prev.system;
|
|
||||||
};
|
|
||||||
})
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
11
nixos/overlays.nix
Normal file
11
nixos/overlays.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ inputs, ... }: {
|
||||||
|
[
|
||||||
|
inputs.nur.overlays.default
|
||||||
|
inputs.fenix.overlays.default
|
||||||
|
(final: prev: {
|
||||||
|
unstable = import inputs.nixpkgs-unstable {
|
||||||
|
system = prev.system;
|
||||||
|
};
|
||||||
|
})
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue