mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-06 02:40:14 +00:00
remove nixos directory
This commit is contained in:
12
modules/applications/qbittorrent.nix
Normal file
12
modules/applications/qbittorrent.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{ config, pkgs, lib, gui, identity, ... }: {
|
||||
|
||||
config = lib.mkIf gui.enable {
|
||||
|
||||
home-manager.users.${identity.user} = {
|
||||
|
||||
home.packages = with pkgs; [ qbittorrent ];
|
||||
|
||||
};
|
||||
};
|
||||
|
||||
}
|
10
modules/common.nix
Normal file
10
modules/common.nix
Normal file
@ -0,0 +1,10 @@
|
||||
{ pkgs, ... }: {
|
||||
|
||||
nix.extraOptions = "experimental-features = nix-command flakes";
|
||||
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [ git vim wget curl ];
|
||||
|
||||
}
|
10
modules/editor/notes.nix
Normal file
10
modules/editor/notes.nix
Normal file
@ -0,0 +1,10 @@
|
||||
{ identity, ... }: {
|
||||
home-manager.users.${identity.user} = {
|
||||
|
||||
home.sessionVariables = {
|
||||
NOTES_PATH = "/home/${identity.user}/dev/personal/notes";
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
}
|
@ -31,6 +31,8 @@ in {
|
||||
qrencode # Generate qr codes
|
||||
vimv # Batch rename files
|
||||
dig # DNS lookup
|
||||
# gnupg
|
||||
# pass
|
||||
];
|
||||
|
||||
home.file = {
|
||||
|
Reference in New Issue
Block a user