mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-12-21 19:24:15 +00:00
refactoring
This commit is contained in:
parent
ce2929c63e
commit
993d44eb9c
3 changed files with 9 additions and 7 deletions
|
@ -1,6 +1,8 @@
|
|||
{
|
||||
inputs.nixpkgs.url = "nixpkgs/nixos-unstable";
|
||||
inputs.impermanence.url = "github:nix-community/impermanence";
|
||||
inputs = {
|
||||
nixpkgs.url = "nixpkgs/nixos-unstable";
|
||||
impermanence.url = "github:nix-community/impermanence";
|
||||
};
|
||||
|
||||
outputs =
|
||||
{
|
||||
|
|
|
@ -50,10 +50,10 @@
|
|||
|
||||
nix = {
|
||||
nixPath = [ "nixpkgs=flake:nixpkgs" ];
|
||||
extraOptions = ''
|
||||
experimental-features = nix-command flakes
|
||||
keep-build-log = false
|
||||
'';
|
||||
settings = {
|
||||
experimental-features = "nix-command flakes";
|
||||
keep-build-log = false;
|
||||
};
|
||||
};
|
||||
|
||||
services = {
|
||||
|
|
|
@ -54,7 +54,7 @@ with lib;
|
|||
'';
|
||||
|
||||
fonts.packages = [
|
||||
(pkgs.nerdfonts.override { fonts = [ "DejaVuSansMono" ]; })
|
||||
pkgs.nerd-fonts.dejavu-sans-mono
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
|
Loading…
Reference in a new issue