added nix module
This commit is contained in:
parent
9af3b867c6
commit
d523e07700
2 changed files with 9 additions and 0 deletions
|
@ -12,6 +12,7 @@
|
||||||
./picom.nix
|
./picom.nix
|
||||||
./zathura.nix
|
./zathura.nix
|
||||||
./zsh.nix
|
./zsh.nix
|
||||||
|
./nix.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# USERS
|
# USERS
|
||||||
|
|
8
modules/nix.nix
Normal file
8
modules/nix.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
nix.package = pkgs.nixFlakes;
|
||||||
|
nix.extraOptions = ''
|
||||||
|
experimental-features = nix-command flakes
|
||||||
|
'';
|
||||||
|
}
|
Loading…
Reference in a new issue