Testing umoria
This commit is contained in:
parent
8d5c4b724b
commit
09138e72d9
4 changed files with 22 additions and 1 deletions
16
flake.lock
generated
16
flake.lock
generated
|
@ -303,6 +303,21 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs-dev": {
|
||||
"locked": {
|
||||
"lastModified": 1650234480,
|
||||
"narHash": "sha256-EdnUK7+8pUoo/CraZvLb1pW9VvL7mfjpJ9swae5btjE=",
|
||||
"owner": "aciceri",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "c2bc2e8c2488f4b0b88217d8655e072ab4fc403b",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "aciceri",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs-wayland": {
|
||||
"inputs": {
|
||||
"cachix": [
|
||||
|
@ -400,6 +415,7 @@
|
|||
"emacs-overlay": "emacs-overlay",
|
||||
"home": "home",
|
||||
"nixos-hardware": "nixos-hardware",
|
||||
"nixpkgs-dev": "nixpkgs-dev",
|
||||
"nixpkgs-wayland": "nixpkgs-wayland",
|
||||
"nur": "nur",
|
||||
"stable": "stable",
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
{
|
||||
stable.url = github:nixos/nixpkgs/release-21.11;
|
||||
unstable.url = github:nixos/nixpkgs/nixos-unstable;
|
||||
nixpkgs-dev.url = github:aciceri/nixpkgs;
|
||||
|
||||
nur.url = github:nix-community/NUR;
|
||||
|
||||
|
@ -34,6 +35,7 @@
|
|||
{ self
|
||||
, digga
|
||||
, unstable
|
||||
, nixpkgs-dev
|
||||
, home
|
||||
, nixos-hardware
|
||||
, darwin
|
||||
|
@ -126,6 +128,7 @@
|
|||
suites = with profiles; rec {
|
||||
base = [ core users.ccr users.root ];
|
||||
};
|
||||
nixpkgs-dev = inputs.nixpkgs-dev.legacyPackages.aarch64-linux;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, suites, lib, config, ... }:
|
||||
{ pkgs, suites, lib, config, nixpkgs-dev, ... }:
|
||||
{
|
||||
home-manager.users.ccr = { suites, ... }: {
|
||||
imports = with suites; shell ++ base ++ (if config.networking.hostName != "hs" then
|
||||
|
@ -9,6 +9,7 @@
|
|||
home.packages = with pkgs; [
|
||||
ack
|
||||
ranger
|
||||
nixpkgs-dev.umoria
|
||||
] ++ (if config.networking.hostName != "hs" then [
|
||||
imv
|
||||
calibre
|
||||
|
|
|
@ -34,6 +34,7 @@ in
|
|||
mbsync = {
|
||||
enable = true;
|
||||
create = "maildir";
|
||||
expunge = "both";
|
||||
};
|
||||
msmtp.enable = true;
|
||||
notmuch.enable = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue