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