diff --git a/config/gui.nix b/config/gui.nix new file mode 100644 index 0000000..d463526 --- /dev/null +++ b/config/gui.nix @@ -0,0 +1,17 @@ +{ config, pkgs, ... }: + +{ +environment.systemPackages = with pkgs; [ + qutebrowser + thunderbird + alacritty + gparted + xfce.thunar + ffmpeg + logseq + jetbrains.idea-ultimate + vscodium # consider vscodium-fhs + texlive.combined.scheme-medium + telegram-desktop +]; +} diff --git a/flake.lock b/flake.lock index 51a892f..c211742 100644 --- a/flake.lock +++ b/flake.lock @@ -2,16 +2,16 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1704987849, - "narHash": "sha256-gZJSlgUkfLYekceF+2r5YI3pKqaYNSBR5SRL8yfoCU8=", + "lastModified": 1704874635, + "narHash": "sha256-YWuCrtsty5vVZvu+7BchAxmcYzTMfolSPP5io8+WYCg=", "owner": "nixos", "repo": "nixpkgs", - "rev": "676128b13cd7bc0b24d22ee18b164641b691b621", + "rev": "3dc440faeee9e889fe2d1b4d25ad0f430d449356", "type": "github" }, "original": { "owner": "nixos", - "ref": "release-23.11", + "ref": "nixos-23.11", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index 8a4671f..8da6b5b 100644 --- a/flake.nix +++ b/flake.nix @@ -2,7 +2,7 @@ description = "Nixos config flake"; inputs = { - nixpkgs.url = "github:nixos/nixpkgs/release-23.11"; + nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11"; # home-manager = { # url = "github:nix-community/home-manager"; @@ -21,6 +21,7 @@ specialArgs = {inherit inputs;}; modules = [ ./configuration.nix + ./config/gui.nix # inputs.home-manager.nixosModules.default ]; };