Compare commits

...

4 commits

Author SHA1 Message Date
bb27838b68
add obs-studio 2024-12-13 08:06:51 -05:00
003d3da4f8
remove discover 2024-12-13 08:06:40 -05:00
308a9f2aac
fix the nixpkgs vm 2024-12-13 08:06:24 -05:00
e6068b936a
update lockfile 2024-12-13 08:06:17 -05:00
3 changed files with 14 additions and 10 deletions

18
flake.lock generated
View file

@ -339,11 +339,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1733951607, "lastModified": 1734043726,
"narHash": "sha256-CN6q6iCzxI1gkNyk4xLdwaMKi10r7n+aJkRzWj8PXwQ=", "narHash": "sha256-e9YAMReFV1fDPcZLFC2pa4k/8TloSXeX0z2VysNMAoA=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "6e5b2d9e8014b5572e3367937a329e7053458d34", "rev": "3066cc58f552421a2c5414e78407fa5603405b1e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -607,11 +607,11 @@
"treefmt-nix": "treefmt-nix" "treefmt-nix": "treefmt-nix"
}, },
"locked": { "locked": {
"lastModified": 1733965678, "lastModified": 1734047986,
"narHash": "sha256-4oStT0vqnogAhZoeAJFQGVY+iKVCYvh3qYlIMQzylig=", "narHash": "sha256-Sgs+IBdeggoSPeiKHN40wW6/BgBDnersgdhLQK4fUR8=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nixvim", "repo": "nixvim",
"rev": "54b1d912992e4d3e76dadd98f300b28f083ca7bc", "rev": "d99bc6ebadce99dcb8b294c31fac96329b3bdf2e",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -629,11 +629,11 @@
"treefmt-nix": "treefmt-nix_2" "treefmt-nix": "treefmt-nix_2"
}, },
"locked": { "locked": {
"lastModified": 1734022129, "lastModified": 1734040021,
"narHash": "sha256-IfSMRotSxeRlGdbFCZ5nbxBdsA6bbK0O8NZoBPdrjBw=", "narHash": "sha256-nvuGMYd1+aTumHIUsbqCPSqYMFJ79dtoDch7wcq1MPE=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "765f8426199754c49efb6ee0df12f30fc3d9603a", "rev": "c0d4597c7b574ae59fcb0fd45966d760f3c70fc2",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -2,7 +2,7 @@
{ {
imports = [ imports = [
../template.nix ../template.nix
../../../nixos/shell.nix #../../../nixos/shell.nix
]; ];
environment.systemPackages = with pkgs; [ fastfetch ]; environment.systemPackages = with pkgs; [ fastfetch ];
} }

View file

@ -10,6 +10,7 @@ let
packages = with pkgs; [ packages = with pkgs; [
bitwarden-desktop bitwarden-desktop
onlyoffice-bin onlyoffice-bin
obs-studio
okteta okteta
krita krita
ytmdesktop ytmdesktop
@ -36,6 +37,9 @@ in
# Enable the KDE Plasma Desktop Environment. # Enable the KDE Plasma Desktop Environment.
services.desktopManager.plasma6.enable = true; services.desktopManager.plasma6.enable = true;
environment.plasma6.excludePackages = with pkgs.kdePackages; [
discover
];
programs.partition-manager.enable = true; programs.partition-manager.enable = true;