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 = {
|
||||||
inputs.impermanence.url = "github:nix-community/impermanence";
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
||||||
|
impermanence.url = "github:nix-community/impermanence";
|
||||||
|
};
|
||||||
|
|
||||||
outputs =
|
outputs =
|
||||||
{
|
{
|
||||||
|
|
|
@ -50,10 +50,10 @@
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
nixPath = [ "nixpkgs=flake:nixpkgs" ];
|
nixPath = [ "nixpkgs=flake:nixpkgs" ];
|
||||||
extraOptions = ''
|
settings = {
|
||||||
experimental-features = nix-command flakes
|
experimental-features = "nix-command flakes";
|
||||||
keep-build-log = false
|
keep-build-log = false;
|
||||||
'';
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
|
|
|
@ -54,7 +54,7 @@ with lib;
|
||||||
'';
|
'';
|
||||||
|
|
||||||
fonts.packages = [
|
fonts.packages = [
|
||||||
(pkgs.nerdfonts.override { fonts = [ "DejaVuSansMono" ]; })
|
pkgs.nerd-fonts.dejavu-sans-mono
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
Loading…
Reference in a new issue