diff --git a/flake.lock b/flake.lock index ea6ed46..b9b329e 100644 --- a/flake.lock +++ b/flake.lock @@ -25,11 +25,11 @@ ] }, "locked": { - "lastModified": 1721534365, - "narHash": "sha256-XpZOkaSJKdOsz1wU6JfO59Rx2fqtcarQ0y6ndIOKNpI=", + "lastModified": 1719418488, + "narHash": "sha256-Hu75KIbGLJA8qe42rO5WkRQ+E+BuzjS42bNEZcy9zT8=", "owner": "nix-community", "repo": "home-manager", - "rev": "635563f245309ef5320f80c7ebcb89b2398d2949", + "rev": "607f969f5dca2dc100cbc53e24ab49ac24ef8987", "type": "github" }, "original": { @@ -47,11 +47,11 @@ "rust-overlay": "rust-overlay" }, "locked": { - "lastModified": 1721434139, - "narHash": "sha256-rgqXubo9LD5IX+iNeX1W6HRIJLvv8RpiAyLBER6JK4A=", + "lastModified": 1719422193, + "narHash": "sha256-2qrVg5GSBmrj4vprXpS+lDGei2o4ezcFWxTK3/yomog=", "owner": "martinvonz", "repo": "jj", - "rev": "8df7857706cb2e7992270b00df52c9a753b42c09", + "rev": "35e0e4d133b0724d2be53fac28b2fa0bdc77d759", "type": "github" }, "original": { @@ -83,11 +83,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1721379653, - "narHash": "sha256-8MUgifkJ7lkZs3u99UDZMB4kbOxvMEXQZ31FO3SopZ0=", + "lastModified": 1719254875, + "narHash": "sha256-ECni+IkwXjusHsm9Sexdtq8weAq/yUyt1TWIemXt3Ko=", "owner": "nixos", "repo": "nixpkgs", - "rev": "1d9c2c9b3e71b9ee663d11c5d298727dace8d374", + "rev": "2893f56de08021cffd9b6b6dfc70fd9ccd51eb60", "type": "github" }, "original": { @@ -99,11 +99,11 @@ }, "nixpkgs-stable": { "locked": { - "lastModified": 1720535198, - "narHash": "sha256-zwVvxrdIzralnSbcpghA92tWu2DV2lwv89xZc8MTrbg=", + "lastModified": 1719234068, + "narHash": "sha256-1AjSIedDC/aERt24KsCUftLpVppW61S7awfjGe7bMio=", "owner": "nixos", "repo": "nixpkgs", - "rev": "205fd4226592cc83fd4c0885a3e4c9c400efabb5", + "rev": "90bd1b26e23760742fdcb6152369919098f05417", "type": "github" }, "original": { @@ -115,11 +115,11 @@ }, "nur": { "locked": { - "lastModified": 1721558485, - "narHash": "sha256-CCT9Iwu9a9uYpD617EA0ocWuQxDPmlMU70OrhbvmUrw=", + "lastModified": 1719427611, + "narHash": "sha256-MYurgW19a5TFlL1zqPWG73TllIOdUKGstGHPq5c3adw=", "owner": "nix-community", "repo": "NUR", - "rev": "69fbaf6c7b906fe1580b683bf9be8d49acd349a4", + "rev": "9dfa9e7493fea727c02b7b1e2a7f96cd13066022", "type": "github" }, "original": { diff --git a/home-manager/vscode.nix b/home-manager/vscode.nix index 710513d..1aed0e6 100644 --- a/home-manager/vscode.nix +++ b/home-manager/vscode.nix @@ -54,6 +54,7 @@ jnoortheen.nix-ide timonwong.shellcheck mads-hartmann.bash-ide-vscode + mgt19937.typst-preview ms-azuretools.vscode-docker ms-python.python ms-vscode-remote.remote-ssh diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 5e1bc80..f04a96e 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -169,6 +169,8 @@ in # Shows notification for `net.nuetzlich.SystemNotifications.Notify` D-Bus messages services.systembus-notify.enable = true; + # Enable sound with pipewire. + sound.enable = true; hardware.pulseaudio.enable = false; security.rtkit.enable = true; services.pipewire = { @@ -192,6 +194,7 @@ in useRoutingFeatures = "both"; }; + # TODO: Configure your system-wide user settings (groups, etc), add more users as needed. users = { users = { nora = { @@ -199,6 +202,7 @@ in isNormalUser = true; home = "/home/nora"; openssh.authorizedKeys.keys = [ + # TODO: Add your SSH public key(s) here, if you plan on using SSH to connect "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIG0n1ikUG9rYqobh7WpAyXrqZqxQoQ2zNJrFPj12gTpP" ]; extraGroups = [ "wheel" "networkmanager" "audio" "libvirtd" ]; @@ -210,7 +214,7 @@ in }; extraGroups = { vboxusers = { - #members = [ "nora" ]; + #members = [ "nils" ]; }; }; };