Refactor, add roam using colmena
This commit is contained in:
parent
a42514ce97
commit
1106930891
16 changed files with 348 additions and 103 deletions
36
mod/shared/pc.nix
Normal file
36
mod/shared/pc.nix
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
{ mod, lib, ... }:
|
||||
{
|
||||
imports = with mod; [
|
||||
shared.all
|
||||
|
||||
audio
|
||||
fonts
|
||||
gpg
|
||||
home-manager
|
||||
network
|
||||
nix-configuration
|
||||
security
|
||||
services
|
||||
software.development
|
||||
software.editors
|
||||
software.programs
|
||||
software.window-manager
|
||||
];
|
||||
|
||||
nixpkgs.config.allowUnfreePredicate =
|
||||
pkg:
|
||||
builtins.elem (lib.getName pkg) [
|
||||
"nvidia-x11"
|
||||
"nvidia-settings"
|
||||
"vscode"
|
||||
"obsidian"
|
||||
"steam"
|
||||
"steam-unwrapped"
|
||||
"gateway" # jetbrains
|
||||
"spotify"
|
||||
"rust-rover"
|
||||
];
|
||||
|
||||
programs.nix-ld.enable = true;
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue