add some packages
This commit is contained in:
parent
50e2e52809
commit
a4a197bd8c
5 changed files with 15 additions and 4 deletions
10
flake.nix
10
flake.nix
|
@ -77,17 +77,24 @@
|
|||
url = "github:nix-community/disko";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
#dns = {
|
||||
# url = "github:kirelagin/dns.nix";
|
||||
# inputs.nixpkgs.follows = "nixpkgs";
|
||||
#};
|
||||
};
|
||||
|
||||
outputs =
|
||||
{ self
|
||||
, colmena
|
||||
, disko
|
||||
#, dns
|
||||
, doom-emacs-nix
|
||||
, emacs-overlay
|
||||
, grocy-scanner
|
||||
, home-manager
|
||||
, home-manager-utils
|
||||
, kmonad
|
||||
, landingpage
|
||||
, nixos-hardware
|
||||
, nixpkgs
|
||||
, nixpkgs-fmt
|
||||
|
@ -99,8 +106,6 @@
|
|||
, retiolum
|
||||
, secrets
|
||||
, sops-nix
|
||||
, landingpage
|
||||
, kmonad
|
||||
}:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
|
@ -218,7 +223,6 @@
|
|||
private_assets.nixosModules.jobrad
|
||||
retiolum.nixosModules.retiolum
|
||||
];
|
||||
|
||||
home-manager.users.mainUser = {
|
||||
imports = [
|
||||
doom-emacs-nix.hmModule
|
||||
|
|
|
@ -23,7 +23,6 @@ with lib;
|
|||
enable = true;
|
||||
config.theme = "gruvbox-light";
|
||||
};
|
||||
|
||||
home.shellAliases.cat = "${pkgs.bat}/bin/bat";
|
||||
|
||||
# notify me when a command is finished
|
||||
|
@ -34,6 +33,7 @@ with lib;
|
|||
enable = true;
|
||||
enableAliases = true;
|
||||
};
|
||||
home.shellAliases.llt = "${pkgs.exa}/bin/exa -a --tree";
|
||||
|
||||
# use z instead of cd
|
||||
# use zi to fuzzy search through all registered directories
|
||||
|
|
|
@ -18,6 +18,9 @@
|
|||
users.groups."media".gid = config.ids.gids.transmission;
|
||||
users.users."media" = {
|
||||
uid = config.ids.uids.transmission;
|
||||
useDefaultShell = true;
|
||||
home = "/home/media";
|
||||
createHome = true;
|
||||
group = "media";
|
||||
};
|
||||
|
||||
|
|
|
@ -6,5 +6,7 @@
|
|||
pkgs.youtube-dl
|
||||
pkgs.mnamer
|
||||
pkgs.mc
|
||||
pkgs.unrar
|
||||
pkgs.unzip
|
||||
];
|
||||
}
|
||||
|
|
|
@ -46,6 +46,8 @@ in
|
|||
|
||||
valentina
|
||||
|
||||
signal-desktop
|
||||
|
||||
sweethome3d.application
|
||||
pkgs.polygon-art.polygon-art
|
||||
|
||||
|
|
Loading…
Reference in a new issue