mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-05-03 04:03:08 +00:00
~
This commit is contained in:
parent
55384a11ad
commit
5dadf60db8
5 changed files with 33 additions and 13 deletions
|
@ -1,11 +1,22 @@
|
|||
{ pkgs, ... }:
|
||||
{ pkgs, nixpkgs-unstable, ... }:
|
||||
{
|
||||
imports = [
|
||||
../packages.nix
|
||||
];
|
||||
|
||||
nix.settings.experimental-features = ["nix-command" "flakes"];
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
nixpkgs = {
|
||||
config.allowUnfree = true;
|
||||
overlays = [
|
||||
inputs.nur.overlays.default
|
||||
inputs.fenix.overlays.default
|
||||
(final: prev: {
|
||||
unstable = import nixpkgs-unstable {
|
||||
system = prev.system;
|
||||
};
|
||||
})
|
||||
];
|
||||
};
|
||||
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue