commit 8fe9a9dc468dad680f8a99cbe21da3fed7386a3a
parent 66ad0943a03aef2f7f3a06d536fb1e38709d8140
Author: MTRNord <mtrnord1@gmail.com>
Date: Wed, 4 Oct 2023 20:35:37 +0200
New lsd
Diffstat:
2 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/flake.nix b/flake.nix
@@ -29,7 +29,7 @@
docker-utils.url = "github:collinarnett/docker-utils";
};
- outputs = { self, nixpkgs, nixpkgs-discourse, home-manager, sops-nix, docker-utils, ... }@inputs:
+ outputs = { self, nixpkgs, nixpkgs-unstable, nixpkgs-discourse, home-manager, sops-nix, docker-utils, ... }@inputs:
let
inherit (self) outputs;
forAllSystems = nixpkgs.lib.genAttrs [
diff --git a/home-manager/home.nix b/home-manager/home.nix
@@ -1,7 +1,7 @@
# This is your home-manager configuration file
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
-{ inputs, outputs, lib, config, pkgs, ... }: {
+{ inputs, outputs, lib, config, pkgs, nixpkgs-unstable, ... }: {
# You can import other home-manager modules here
imports = [
# If you want to use modules your own flake exports (from modules/home-manager):
@@ -31,6 +31,9 @@
# patches = [ ./change-hello-to-hi.patch ];
# });
# })
+ (self: super: {
+ lsd = nixpkgs-unstable.lsd;
+ })
];
# Configure your nixpkgs instance
config = {
@@ -40,7 +43,6 @@
allowUnfreePredicate = (_: true);
};
};
-
home = {
username = "marcel";
homeDirectory = "/home/marcel";
@@ -100,12 +102,12 @@
settings = {
classic = false;
blocks = [
- "permissions"
+ "permission"
"user"
- "groups"
+ "group"
"size"
"git"
- "dates"
+ "date"
"name"
];
total-size = true;